mirror of
https://github.com/gwm17/catima.git
synced 2024-11-22 18:28:51 -05:00
17 lines
244 B
Makefile
17 lines
244 B
Makefile
PROGRAMS=simple example2 materials ls_coefficients
|
|
|
|
GCC=g++ -Wall -std=c++14
|
|
INCDIR=-I$(CATIMAPATH)/include
|
|
LIBDIR=-L$(CATIMAPATH)
|
|
LIBS=-lcatima
|
|
|
|
|
|
|
|
all: $(PROGRAMS)
|
|
|
|
%: %.cpp
|
|
$(GCC) $< $(INCDIR) $(LIBDIR) $(LIBS) -o $@
|
|
|
|
clean:
|
|
rm $(PROGRAMS)
|