1
0
Fork 0
mirror of https://github.com/gwm17/catima.git synced 2024-11-23 02:38:51 -05:00
catima/examples/makefile
2019-10-08 19:50:45 +02:00

17 lines
244 B
Makefile

PROGRAMS=simple dedx materials ls_coefficients
GCC=g++ -Wall -std=c++14
INCDIR=-I$(CATIMAPATH)/include
LIBDIR=-L$(CATIMAPATH)/lib
LIBS=-lcatima
all: $(PROGRAMS)
%: %.cpp
$(GCC) $< $(INCDIR) $(LIBDIR) $(LIBS) -o $@
clean:
rm $(PROGRAMS)