-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
64 lines (50 loc) · 1.95 KB
/
Makefile
File metadata and controls
64 lines (50 loc) · 1.95 KB
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
60
61
62
63
64
#
# Copyright (C) 2011-2013,2018 Alexey V. Medvedev
#
# This file is part of cppcgen. cppcgen is a C++-11 generator of C code with macroses.
#
# cppcgen is free software: you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# cppcgen is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with cppcgen. If not, see <http://www.gnu.org/licenses/>.
#
MAKEFLAGS += --no-print-directory
LIB = lib/libcppcgen.so
SRC = src/term.cpp src/expr.cpp src/exprdir.cpp src/basic_expr.cpp src/expression.cpp
OBJ = $(subst .cpp,.o,$(SRC))
HDR = src/cppcgen_basic_expr.h src/cppcgen_output.h src/cppcgen_exprdir.h src/cppcgen_helpers.h src/cppcgen_term.h src/cppcgen_pair.h src/cppcgen_expr.h src/cppcgen_expression.h src/cppcgen.h src/cppcgen_basic_syntax.h src/cppcgen_utils.h
override CPPFLAGS += -Isrc
override CXXFLAGS += -std=c++11 -Wall -Wextra -pedantic -O3 -fPIC
.PHONY: all lib clean showfiles tests distr distclean
all: lib distr tests
lib: $(LIB)
$(LIB): $(OBJ)
@mkdir -p lib
$(CXX) -shared -o $@ $^
distr: $(LIB) $(HDR)
@mkdir -p distr
@mkdir -p distr/include distr/lib
@cp -u $(LIB) distr/lib
@cp -u $(HDR) distr/include
tests: distr
@+make -f Tests.mak
clean:
rm -f $(LIB) $(OBJ)
make -f Tests.mak clean
distclean: clean
rm -rf distr lib
find src -name '*~' | xargs rm -f
rm -f *~
@make -f Tests.mak distclean
@find . -name '*.o' | while read f; do echo "NOTE: $$f file has left after clean!"; done
showfiles:
@echo $(SRC) $(TEST) $(HDR) `make -f Tests.mak showfiles`
$(OBJ): $(HDR) Makefile