home *** CD-ROM | disk | FTP | other *** search
/ Fish 'n' More 2 / fishmore-publicdomainlibraryvol.ii1991xetec.iso / fish / programming / gnugrep_406 / src / lmkfile < prev    next >
Text File  |  1989-12-14  |  431b  |  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.