-
Notifications
You must be signed in to change notification settings - Fork 74
/
Makefile
45 lines (37 loc) · 1.1 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
#
# Open Bloom Filter MakeFile
# By Arash Partow - 2000
#
# URL: http://www.partow.net/programming/hashfunctions/index.html
#
# Copyright Notice:
# Free use of this library is permitted under the guidelines
# and in accordance with the most current version of the
# MIT License.
# http://www.opensource.org/licenses/MIT
#
COMPILER = -c++
#COMPILER = -clang
OPTIMIZATION_OPT = -O3
OPTIONS = -pedantic-errors -ansi -Wall -Wextra -Werror -Wno-long-long $(OPTIMIZATION_OPT)
LINKER_OPT = -L/usr/lib -lstdc++ -lm
BUILD_LIST+=bloom_filter_example01
BUILD_LIST+=bloom_filter_example02
BUILD_LIST+=bloom_filter_example03
all: $(BUILD_LIST)
$(BUILD_LIST) : %: %.cpp bloom_filter.hpp
$(COMPILER) $(OPTIONS) -o $@ [email protected] $(LINKER_OPT)
strip_bin :
@for f in $(BUILD_LIST); do if [ -f $$f ]; then strip -s $$f; echo $$f; fi done;
valgrind :
@for f in $(BUILD_LIST); do \
if [ -f $$f ]; then \
cmd="valgrind --leak-check=full --show-reachable=yes --track-origins=yes --log-file=$$f.log -v ./$$f"; \
echo $$cmd; \
$$cmd; \
fi done;
clean:
rm -f core *.o *.bak *stackdump *#
#
# The End !
#