home *** CD-ROM | disk | FTP | other *** search
/ NeXTSTEP 3.0 / NeXTSTEP3.0.iso / NextDeveloper / Examples / AppKit / Graph / Makefile.preamble < prev    next >
Encoding:
Makefile  |  1992-06-01  |  602 b   |  21 lines

  1. #
  2. # Makefile Preamble
  3. #
  4.  
  5. # declare our other ofiles that the yacc and lex modules produce
  6. # vers.o contains current version info from the vers_string command
  7. OTHER_OFILES = expr.o token.o vers.o
  8.  
  9. # tell yacc to produe a y.tab.h file, which has #defines for the token types
  10. YFLAGS = -d
  11.  
  12. # junk produced by yacc and lex that is removed when we make clean
  13. # vers.c is produced by the vers_string command.
  14. OTHER_GARBAGE = expr.m y.tab.h token.m vers.c Graph.p
  15.  
  16. # lets me know if my precomp isn't being used
  17. #CFLAGS = -Wprecomp
  18.  
  19. # I comment this in when I want to find memory leaks
  20. #LDFLAGS = -lMallocDebug
  21.