-
Notifications
You must be signed in to change notification settings - Fork 2
/
Makefile
59 lines (44 loc) · 1.57 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
###############################################################################
## MAKEFILE
###############################################################################
ifeq (,$(wildcard Makefile.in))
include Makefile.in.default
else
include Makefile.in
endif
LIBRARIES += -pthread
CPPFLAGS := $(OPTIONS) -fPIC $(INCLUDES)
SOURCES := CanteraPFR/src/cpp
CXX := g++
AR := ar
ARFLAGS := sq
RM := rm -rf
###############################################################################
## CONVERT OBJECTS
###############################################################################
SOBJECT := $(shell find $(SOURCES) -iname "*.cpp")
OBJECTS := $(patsubst $(SOURCES)/%.cpp,$(SOURCES)/%.o,$(SOBJECT))
###############################################################################
## COMPILE MODELS
###############################################################################
.PHONY := all
all: cython docs shared_library
cython: library
$(PYTHON) setup.py install
docs: cython
cd docs && make html
library: $(OBJECTS)
$(AR) $(ARFLAGS) CanteraPFR/lib/libCanteraPFR.a $(OBJECTS)
shared_library: $(OBJECTS)
$(CXX) -shared -fPIC $(INCLUDES) CanteraPFR/cPFR.c $(OBJECTS) $(LIBRARIES) \
-o CanteraPFR/lib/libCanteraPFR_shared.so
clean:
$(RM) $(OBJECTS) build *.egg-info
dist-clean: clean
$(RM) CanteraPFR/lib/*
cd docs && make clean
clean-all: dist-clean
$(RM) external cygwin setup-x86_64.exe
###############################################################################
## EOF
###############################################################################