home *** CD-ROM | disk | FTP | other *** search
Makefile | 1992-06-01 | 602 b | 21 lines |
- #
- # Makefile Preamble
- #
-
- # declare our other ofiles that the yacc and lex modules produce
- # vers.o contains current version info from the vers_string command
- OTHER_OFILES = expr.o token.o vers.o
-
- # tell yacc to produe a y.tab.h file, which has #defines for the token types
- YFLAGS = -d
-
- # junk produced by yacc and lex that is removed when we make clean
- # vers.c is produced by the vers_string command.
- OTHER_GARBAGE = expr.m y.tab.h token.m vers.c Graph.p
-
- # lets me know if my precomp isn't being used
- #CFLAGS = -Wprecomp
-
- # I comment this in when I want to find memory leaks
- #LDFLAGS = -lMallocDebug
-