extended_preprocessor: adding Makefile for test example

time-shift
Michel Juillard 2013-10-20 14:59:30 +02:00
parent a18b33ed7e
commit 9fd48df408
1 changed files with 11 additions and 0 deletions

11
others/cpp/tests/Makefile Normal file
View File

@ -0,0 +1,11 @@
DYNARE=../../../matlab/dynare_m
all: test1
test1.o : test1.cc ../dynare_cpp_driver.hh ../dynare_cpp_driver.cc
gcc -g -c test1.cc -I.. -I../../../mex/sources -I../../../mex/sources/estimation -I../../../mex/sources/estimation/libmat
dynare_cpp_driver.o: ../dynare_cpp_driver.cc ../dynare_cpp_driver.hh
gcc -g -c ../dynare_cpp_driver.cc -I..
example1.o: example1.mod
$(DYNARE) example1.mod output=first
gcc -g -c example1.cc -I..
test1 : test1.o example1.o dynare_cpp_driver.o
gcc -g -o test1 test1.o example1.o dynare_cpp_driver.o -lstdc++