
INC	:= -I. -I..
LIB	:= -lm

all:	ctmp

ctmp:	ctmp.cpp Makefile ../poissinv.h \
	../mlmc_test.cpp ../mlmc_test_100.cpp ../mlmc.cpp
	g++ -std=c++11 ctmp.cpp -o ctmp $(INC) $(LIB)
clean:
	rm -f ctmp
