-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
65 lines (49 loc) · 1.53 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
60
61
62
63
64
65
#http://hiltmon.com/blog/2013/07/03/a-simple-c-plus-plus-project-structure/
#
#
LIBCONFIGREAD_PROGRAM = libconfigread
LIBCONFIGREAD_SOURCES = src/libConfigReader.cc \
src/envVariable.cc
# Temporary files
LIBCONFIGREAD_OBJS = $(LIBCONFIGREAD_SOURCES:.cc=.o)
LIBCONFIGREAD_DEPS = $(LIBCONFIGREAD_SOURCES:.cc=.P)
CXXFLAGS = -Wall #-Wno-unused-but-set-variable
RELEASE_FLAGS = -O9 -march=native
DEBUG_FLAGS = -ggdb -O0 -DDEBUG
CXX = g++
LD = g++
CTAGS=ctags --c++-kinds=+p --fields=+iaS --extra=+q
LDFLAGS = -lconfig++
RM = rm
MAKEFILE = Makefile
# Dependency generation macro for *.P files
# Taken from http://make.mad-scientist.net/autodep.html
MAKEDEPEND = $(CXX) -MM $(CXXFLAGS) -o $*.d $<; \
cp $*.d $*.P; \
sed -e 's/\#.*//' -e 's/^[^:]*: *//' -e 's/ *\\$$//' \
-e '/^$$/ d' -e 's/$$/ :/' < $*.d >> $*.P; \
rm -f $*.d
.PHONY: all
all: release
.PHONY: main
main: $(LIBCONFIGREAD_PROGRAM) tags
.PHONY: release
release: CXXFLAGS += $(RELEASE_FLAGS)
release: main
.PHONY: debug
debug: CXXFLAGS += $(DEBUG_FLAGS)
debug: main
tags: $(SCWR_SOURCES) $(CLCI_SOURCES)
${CTAGS} -R .
.PHONY: clean
clean:
$(RM) -f $(LIBCONFIGREAD_OBJS) $(LIBCONFIGREAD_PROGRAM) $(LIBCONFIGREAD_DEPS) $(LIBCONFIGREAD_SOURCES:.cc=.d)
$(RM) -f tags
$(LIBCONFIGREAD_PROGRAM): $(LIBCONFIGREAD_OBJS) $(MAKEFILE)
$(LD) $(LIBCONFIGREAD_OBJS) $(LDFLAGS) $(CXXFLAGS) -o $@
# Object file creation and dependency file (*.P) creation
src/%.o: %.cc $(MAKEFILE)
@$(MAKEDEPEND)
$(CXX) $(CXXFLAGS) -c $<
# Include dependencies
-include $(LIBCONFIGREAD_DEPS)