home *** CD-ROM | disk | FTP | other *** search
/ Club Amiga de Montreal - CAM / CAM_CD_1.iso / files / 342b.lha / GnuGrep_v1.5 / Lmkfile < prev    next >
Encoding:
Text File  |  1990-01-24  |  431 b   |  25 lines

  1. CFLAGS = -dUSG -dAMIGA -dEGREP -d__STDC__ -d1 -O
  2. # -rr -O
  3.  
  4. OBJS = dfa.o alloca.o egrep.o getopt.o regex.o
  5.  
  6.  
  7. egrep: $(OBJS)
  8.     blink lib:c.o $(OBJS) to egrep lib lib:lc.lib nodebug
  9.  
  10. dfa.o: dfa.c dfa.i dfa.h
  11.     lc $(CFLAGS) dfa.c
  12.  
  13. egrep.o: egrep.c dfa.h regex.h
  14.     lc $(CFLAGS) egrep.c
  15.  
  16. regex.o: regex.c regex.h
  17.     lc $(CFLAGS) regex.c
  18.  
  19. alloca.o: alloca.c
  20.     lc $(CFLAGS) alloca.c
  21.  
  22. getopt.o: getopt.c
  23.     lc $(CFLAGS) getopt.c
  24.  
  25.