ccb@204: # include the system specific Makefile ccb@204: include ../Makefile.$(shell uname) ccb@204: ccb@204: ccb@204: ccb@204: ccb@204: STAGE3_FILES = stage3.o ccb@204: STAGE3_FILES += visit_expression_type.o ccb@204: ccb@204: default: all ccb@204: ccb@204: all: $(STAGE3_FILES) ccb@204: ccb@204: ccb@204: ccb@204: clean: ccb@204: rm -f *.o Makefile.depend ccb@204: ccb@204: ccb@204: CXXFLAGS += -I. -I../* ccb@204: ccb@204: ccb@204: ccb@204: Makefile.depend depend: ccb@204: $(CXX) -MM -MG -I. *.cc > Makefile.depend ccb@204: #| perl -pe 's/:/ Makefile.depend:/' > Makefile.depend ccb@204: ccb@204: include Makefile.depend