#
FLAG = -ml -W
LIB = STRW.LIB
#
#LIB = STR.LIB
#FLAG = -1
.cpp.obj:
    bcc -c $(FLAG) $<
    tlib $(LIB) -+$*.obj

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

$(LIB): $(OBJECTS)

grep.exe:
	bcc -ml grep str.lib

