home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / misc / volume36 / formes / part01 / makefile < prev    next >
Makefile  |  1993-04-01  |  1KB  |  47 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 = "@(#)makefile    2.4 JWC";
  16.  
  17. CC = acc
  18.  
  19. # CFLAGS = -g -DMDEBUG
  20. # LIBS = /usr/lib/debug/malloc.o
  21.  
  22. CFLAGS = -O -DPRODUCTION
  23.  
  24. OBJS = formes.o verb.o exstr.o form.o subject.o verbset.o subjset.o \
  25.     collect.o report.o quiz.o quizstep.o assoc.o random.o quizset.o
  26.  
  27. formes:        $(OBJS)
  28.         $(CC) $(LDFLAGS) -o formes $(OBJS) $(LIBS)
  29.  
  30. assoc.o:    class.h assoc.h
  31. collect.o:    class.h collect.h
  32. exstr.o:    class.h exstr.h
  33. form.o:        class.h form.h
  34. formes.o:    class.h exstr.h form.h subject.h subjset.h quiz.h \
  35.             quizset.h random.h report.h verb.h verbset.h
  36. quiz.o:        class.h quiz.h assoc.h collect.h quizstep.h exstr.h
  37. quizset.o:    class.h quizset.h random.h collect.h quiz.h
  38. quizstep.o:    class.h quizstep.h assoc.h collect.h exstr.h subject.h \
  39.             subjset.h random.h report.h verb.h verbset.h
  40. random.o:    class.h random.h 
  41. report.o:    class.h report.h random.h collect.h
  42. subject.o:    class.h subject.h form.h exstr.h
  43. subjset.o:    class.h subjset.h random.h collect.h
  44. verb.o:        class.h form.h verb.h verbset.h collect.h exstr.h
  45. verbset.o:    class.h verbset.h random.h collect.h verb.h
  46.  
  47.