home *** CD-ROM | disk | FTP | other *** search
/ The Fred Fish Collection 1.5 / ffcollection-1-5-1992-11.iso / ff_disks / 100-199 / ff114.lzh / CDecl / Makefile < prev    next >
Makefile  |  1987-11-22  |  209b  |  16 lines

  1. # Makefile for cdecl
  2.  
  3. CC =        lc
  4. CFLAGS =
  5.  
  6. all :        cdecl
  7.  
  8. cdecl :        cdgram.o cdsupp.o
  9.         blink with cdecl.lnk
  10.  
  11. cdgram.o :    cdgram.c cdlex.c
  12.         $(CC) $(CFLAGS) cdgram.c
  13.  
  14. cdsupp.o :    cdsupp.c
  15.         $(CC) $(CFLAGS) cdsupp.c
  16.