# This file coordinates the translation of lab9's replace.

# The following macro MUST be defined with the absolute
#  name of the directory containing library Strings.

CLASSLIB = 

replace: replace.o Strings.o
	g++ replace.o Strings.o -o replace

replace.o: replace.cc $(CLASSLIB)/Strings.h
	g++ -c -I$(CLASSLIB) replace.cc

Strings.o: $(CLASSLIB)/Strings.cc $(CLASSLIB)/Strings.h
	g++ -c -I$(CLASSLIB) $(CLASSLIB)/Strings.cc

clean:
	rm -f replace *~ *# *.o
