stage3/Makefile
author laurent
Tue, 15 Dec 2009 08:51:44 +0100
changeset 235 ed66dc50f31a
parent 204 8ffa211b7f9a
child 243 bdfee1f5be9e
permissions -rw-r--r--
Bug on generate_c_inlinefcall fixed
Adding support for using structures in POU interface
# 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 > Makefile.depend
	#| perl -pe 's/:/ Makefile.depend:/' > Makefile.depend

include Makefile.depend