#Uncomment the following two lines for Windows based library
#FLAG = -ml -WE
#LIB = WWLIB.LIB
#
#Uncomment the following two lines for Dos based library
LIB = WWLIB.LIB
FLAG = -ml -1
.cpp.obj:
    bcc -c $(FLAG) $<
    tlib $(LIB) -+$*.obj

OBJECTS = str.obj strsearch.obj regx.obj match.obj\
   dynstream.obj bcstr.obj tokens.obj

$(LIB): $(OBJECTS)

grep.exe:
	bcc -ml grep wwlib.lib

