home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume36 / formes / part01 / dos < prev    next >
Text File  |  1993-04-01  |  2KB  |  69 lines

  1.  
  2. #
  3. #  Copyright (C) 1992-1993 Jeffrey Chilton
  4. #
  5. #  Permission is granted to anyone to make or distribute copies of
  6. #  this program, in any medium, provided that the copyright notice
  7. #  and permission notice are preserved, and that the distributor
  8. #  grants the recipient permission for further redistribution as
  9. #  permitted by this notice.
  10. #  
  11. #  Author's E-mail address:  172-9221@mcimail.com
  12. #  
  13. #
  14.  
  15. # static char *whatstring = "@(#)dos    2.4 JWC";
  16.  
  17. CC = cc
  18. CFLAGS = -DDOS -DPRODUCTION -Ot -AS
  19.  
  20. assoc.obj:    assoc.c class.h assoc.h
  21.         $(CC) -c $(CFLAGS) assoc.c
  22.  
  23. collect.obj:    collect.c class.h collect.h
  24.         $(CC) -c $(CFLAGS) collect.c
  25.  
  26. exstr.obj:    exstr.c class.h exstr.h
  27.         $(CC) -c $(CFLAGS) exstr.c
  28.  
  29. form.obj:    form.c class.h form.h
  30.         $(CC) -c $(CFLAGS) form.c
  31.  
  32. formes.obj:    formes.c class.h exstr.h form.h subject.h subjset.h quiz.h \
  33.         quizset.h random.h report.h verb.h verbset.h
  34.         $(CC) -c $(CFLAGS) formes.c
  35.  
  36. quiz.obj:    quiz.c class.h quiz.h assoc.h collect.h quizstep.h exstr.h
  37.         $(CC) -c $(CFLAGS) quiz.c
  38.  
  39. quizset.obj:    quizset.c class.h quizset.h random.h collect.h quiz.h
  40.         $(CC) -c $(CFLAGS) quizset.c
  41.  
  42. quizstep.obj:    quizstep.c class.h quizstep.h assoc.h collect.h exstr.h \
  43.         subject.h subjset.h random.h report.h verb.h verbset.h
  44.         $(CC) -c $(CFLAGS) quizstep.c
  45.  
  46. random.obj:    random.c class.h random.h
  47.         $(CC) -c $(CFLAGS) random.c
  48.  
  49. report.obj:    report.c class.h report.h random.h collect.h
  50.         $(CC) -c $(CFLAGS) report.c
  51.  
  52. subject.obj:    subject.c class.h subject.h form.h exstr.h
  53.         $(CC) -c $(CFLAGS) subject.c
  54.  
  55. subjset.obj:    subjset.c class.h subjset.h random.h collect.h
  56.         $(CC) -c $(CFLAGS) subjset.c
  57.  
  58. verb.obj:    verb.c class.h verb.h form.h verbset.h collect.h exstr.h
  59.         $(CC) -c $(CFLAGS) verb.c
  60.  
  61. verbset.obj:    verbset.c class.h verbset.h random.h collect.h verb.h
  62.         $(CC) -c $(CFLAGS) verbset.c
  63.  
  64. formes.exe:    assoc.obj collect.obj exstr.obj form.obj formes.obj \
  65.         quiz.obj quizset.obj quizstep.obj random.obj report.obj \
  66.         subject.obj subjset.obj verb.obj verbset.obj
  67.         link @formes.rsp
  68.  
  69.