home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 1 / GoldFishApril1994_CD1.img / d1xx / d114 / cdecl / makefile < prev    next >
Encoding:
Makefile  |  1987-11-21  |  209 b   |  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.