1
0
Fork 0
mirror of https://github.com/gwm17/catima.git synced 2024-11-23 10:48:50 -05:00
catima/examples/makefile

17 lines
263 B
Makefile
Raw Normal View History

2018-08-15 11:30:50 -04:00
PROGRAMS=simple dedx example2 materials ls_coefficients reactions
2017-07-25 12:19:11 -04:00
GCC=g++ -Wall -std=c++14
INCDIR=-I$(CATIMAPATH)/include
2018-08-15 11:30:50 -04:00
LIBDIR=-L$(CATIMAPATH)/lib
2017-07-25 12:19:11 -04:00
LIBS=-lcatima
all: $(PROGRAMS)
%: %.cpp
$(GCC) $< $(INCDIR) $(LIBDIR) $(LIBS) -o $@
clean:
rm $(PROGRAMS)