home *** CD-ROM | disk | FTP | other *** search
Makefile | 1993-04-01 | 1.4 KB | 47 lines |
-
- #
- # Copyright (C) 1992-1993 Jeffrey Chilton
- #
- # Permission is granted to anyone to make or distribute copies of
- # this program, in any medium, provided that the copyright notice
- # and permission notice are preserved, and that the distributor
- # grants the recipient permission for further redistribution as
- # permitted by this notice.
- #
- # Author's E-mail address: 172-9221@mcimail.com
- #
- #
-
- # static char *whatstring = "@(#)makefile 2.4 JWC";
-
- CC = acc
-
- # CFLAGS = -g -DMDEBUG
- # LIBS = /usr/lib/debug/malloc.o
-
- CFLAGS = -O -DPRODUCTION
-
- OBJS = formes.o verb.o exstr.o form.o subject.o verbset.o subjset.o \
- collect.o report.o quiz.o quizstep.o assoc.o random.o quizset.o
-
- formes: $(OBJS)
- $(CC) $(LDFLAGS) -o formes $(OBJS) $(LIBS)
-
- assoc.o: class.h assoc.h
- collect.o: class.h collect.h
- exstr.o: class.h exstr.h
- form.o: class.h form.h
- formes.o: class.h exstr.h form.h subject.h subjset.h quiz.h \
- quizset.h random.h report.h verb.h verbset.h
- quiz.o: class.h quiz.h assoc.h collect.h quizstep.h exstr.h
- quizset.o: class.h quizset.h random.h collect.h quiz.h
- quizstep.o: class.h quizstep.h assoc.h collect.h exstr.h subject.h \
- subjset.h random.h report.h verb.h verbset.h
- random.o: class.h random.h
- report.o: class.h report.h random.h collect.h
- subject.o: class.h subject.h form.h exstr.h
- subjset.o: class.h subjset.h random.h collect.h
- verb.o: class.h form.h verb.h verbset.h collect.h exstr.h
- verbset.o: class.h verbset.h random.h collect.h verb.h
-
-