###### File : makefile                       ######
#
# make file for D&D players' handbook database
#
# Modified 85/08/21  JJP
#
OBJ = sp.o vsm.o init.o time.o type.o class.o inout.o special.o
#
default: all
#
all:	${OBJ}
	ld -x /lib/crt0.o ${OBJ} -lc -o sp
#
tar :
	tar cf sp.tar Intro README class.c database init.c inout.c \
		inout.c.new inout.diff makefile oldmakefile s.prmt \
		sp.c sp.h special.c time.c type.c vsm.c



