
# A stripped down version of GNU's ...
# (okay, so it is nothing like it)

TOOBJ=-c

libg++: String.o Regex.o

clean:
	rm -f String.o Regex.o

String.o: String.C String.h Regex.h
	${CXX} ${CFLAGS} ${TOOBJ} String.C

Regex.o: Regex.C String.h Regex.h
	${CXX} ${CFLAGS} ${TOOBJ} Regex.C

