Socket/NetdeviceController: added promisc() methods
[senf.git] / Makefile
1 #----------------------------------------------------------------------
2 # Some SCONS shortcuts
3 #----------------------------------------------------------------------
4 CONCURRENCY_LEVEL ?= $(shell grep process /proc/cpuinfo | wc -l)
5
6 ifdef final
7   SCONS_ARGS += "final="$(final)
8 endif
9 ifdef debug
10   SCONS_ARGS += "debug="$(debug)
11 endif
12 ifdef profile
13   SCONS_ARGS += "profile="$(profile)
14 endif
15
16 SCONS=scons -j $(CONCURRENCY_LEVEL) $(SCONS_ARGS)
17
18 default: build
19
20 build:
21         $(SCONS)
22
23 clean:
24         $(SCONS) --clean all
25         find ./ -name \*.gcno | xargs rm -f
26         find ./ -name \*.gcda | xargs rm -f
27         find ./ -name \*.gcov | xargs rm -f
28         rm -f test_coverage.info
29         rm -rf /doc/test_coverage
30
31 all_docs all_tests all:
32         $(SCONS) $@
33         
34 %/test %/doc:
35         $(SCONS) $@
36
37 %/build:
38         $(SCONS) $*
39
40
41 #----------------------------------------------------------------------
42 # test coverage
43 #----------------------------------------------------------------------
44 test_coverage:
45         $(SCONS) debug=1 EXTRA_CCFLAGS="-fprofile-arcs -ftest-coverage" EXTRA_LIBS="gcov" all_tests
46         ln -s ../../boost/ include/senf/  # ugly work-around
47         lcov --directory . --capture --output-file /tmp/test_coverage.info --base-directory .
48 #       lcov --output-file /tmp/test_coverage.info.tmp --extract test_coverage.info \*/senf/\*
49         lcov --output-file test_coverage.info --remove /tmp/test_coverage.info \*/include/\*
50         genhtml --output-directory doc/test_coverage --title "all_tests" test_coverage.info
51         rm /tmp/test_coverage.info
52         rm include/senf/boost
53
54 #----------------------------------------------------------------------
55 # Subversion stuff
56 #----------------------------------------------------------------------
57 svn_version:
58         @svnversion
59
60 #----------------------------------------------------------------------
61 # Building SENF requires some debian packages
62 #----------------------------------------------------------------------
63 DEB_BASE   = build-essential
64
65 # This line parses the 'Build-Depends' entry from debian/control
66 DEB_SENF   = $(shell perl -an -F'[:,]' -e '                                     \
67                          BEGIN{ $$,=" " }                                       \
68                          $$P=0 if /^\S/;                                        \
69                          map {s/\(.*\)//} @F;                                   \
70                          print @F if $$P;                                       \
71                          if (/^Build-Depends:/) { print @F[1..$$\#F]; $$P=1 }'  \
72                      debian/control | xargs echo)
73
74 prerequisites:
75         aptitude install $(DEB_BASE) $(DEB_SENF)
76
77 package:
78         $(SCONS) deb