home *** CD-ROM | disk | FTP | other *** search
-
- #
- # 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 = "@(#)dos 2.4 JWC";
-
- CC = cc
- CFLAGS = -DDOS -DPRODUCTION -Ot -AS
-
- assoc.obj: assoc.c class.h assoc.h
- $(CC) -c $(CFLAGS) assoc.c
-
- collect.obj: collect.c class.h collect.h
- $(CC) -c $(CFLAGS) collect.c
-
- exstr.obj: exstr.c class.h exstr.h
- $(CC) -c $(CFLAGS) exstr.c
-
- form.obj: form.c class.h form.h
- $(CC) -c $(CFLAGS) form.c
-
- formes.obj: formes.c class.h exstr.h form.h subject.h subjset.h quiz.h \
- quizset.h random.h report.h verb.h verbset.h
- $(CC) -c $(CFLAGS) formes.c
-
- quiz.obj: quiz.c class.h quiz.h assoc.h collect.h quizstep.h exstr.h
- $(CC) -c $(CFLAGS) quiz.c
-
- quizset.obj: quizset.c class.h quizset.h random.h collect.h quiz.h
- $(CC) -c $(CFLAGS) quizset.c
-
- quizstep.obj: quizstep.c class.h quizstep.h assoc.h collect.h exstr.h \
- subject.h subjset.h random.h report.h verb.h verbset.h
- $(CC) -c $(CFLAGS) quizstep.c
-
- random.obj: random.c class.h random.h
- $(CC) -c $(CFLAGS) random.c
-
- report.obj: report.c class.h report.h random.h collect.h
- $(CC) -c $(CFLAGS) report.c
-
- subject.obj: subject.c class.h subject.h form.h exstr.h
- $(CC) -c $(CFLAGS) subject.c
-
- subjset.obj: subjset.c class.h subjset.h random.h collect.h
- $(CC) -c $(CFLAGS) subjset.c
-
- verb.obj: verb.c class.h verb.h form.h verbset.h collect.h exstr.h
- $(CC) -c $(CFLAGS) verb.c
-
- verbset.obj: verbset.c class.h verbset.h random.h collect.h verb.h
- $(CC) -c $(CFLAGS) verbset.c
-
- formes.exe: assoc.obj collect.obj exstr.obj form.obj formes.obj \
- quiz.obj quizset.obj quizstep.obj random.obj report.obj \
- subject.obj subjset.obj verb.obj verbset.obj
- link @formes.rsp
-
-