home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 11 Util / 11-Util.zip / MAWK113.ZIP / mawk_os2.zip / mawk113 / rexp / makefile.os2
Makefile  |  1993-04-24  |  505b  |  25 lines

  1.  
  2. ####################################
  3. # This is a makefile for mawk,
  4. # an implementation of AWK (1988).
  5. ####################################
  6. #
  7. # This builds a regular expression library
  8. # Remove the -DMAWK and the library has general use.
  9. #
  10. # this makefile is for emx / OS2
  11. #
  12.  
  13. CC = gcc
  14. CFLAGS = -O2  -DMAWK
  15. AR = ar
  16.  
  17. C=rexp.c rexp0.c rexp1.c rexp2.c rexp3.c rexpdb.c
  18.  
  19. regexp.a : $(C)
  20.     $(CC) -c $(CFLAGS) $?
  21.   $(AR) rv regexp.a *.o
  22.   $(AR) sv regexp.a
  23.   emxomf -l regexp.a
  24.   del *.o
  25.