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
Wrap
Makefile
|
1993-04-24
|
505b
|
25 lines
####################################
# This is a makefile for mawk,
# an implementation of AWK (1988).
####################################
#
# This builds a regular expression library
# Remove the -DMAWK and the library has general use.
#
# this makefile is for emx / OS2
#
CC = gcc
CFLAGS = -O2 -DMAWK
AR = ar
C=rexp.c rexp0.c rexp1.c rexp2.c rexp3.c rexpdb.c
regexp.a : $(C)
$(CC) -c $(CFLAGS) $?
$(AR) rv regexp.a *.o
$(AR) sv regexp.a
emxomf -l regexp.a
del *.o