stage3/Makefile
author Mario de Sousa <msousa@fe.up.pt>
Tue, 05 Apr 2011 14:24:07 +0100
changeset 281 686fa44e3832
parent 243 bdfee1f5be9e
child 279 c0453b7f99df
permissions -rwxr-xr-x
fixing exit_statement_c: produce 'break' instead of 'exit(0); (Thanks to Manuele)
# include the system specific Makefile
include ../Makefile.$(shell uname)




STAGE3_FILES  = stage3.o
STAGE3_FILES += visit_expression_type.o

default: all

all: $(STAGE3_FILES)



clean:
	rm -f *.o Makefile.depend


CXXFLAGS += -I. -I../*



Makefile.depend depend:
	$(CXX) -MM -MG -I. *.cc \
	  | sed 's/:/ Makefile.depend:/' > Makefile.depend

include Makefile.depend