2 $(Q)echo "$(bold)$(WHAT) $@:$(normal)"
3 $(Q)cd curvetun/ && ./nacl_build.sh ~/nacl
6 tarball.gz: ; $(call GIT_ARCHIVE,gzip,gz)
7 tarball.bz2: ; $(call GIT_ARCHIVE,bzip2,bz2)
8 tarball.xz: ; $(call GIT_ARCHIVE,xz,xz)
9 tarball: tarball.gz tarball.bz2 tarball.xz
21 $(Q)echo -e " *** BLURB HERE (general bits, optional) ***\n\n---\n" > .MAIL_MSG
22 $(Q)echo -e "netsniff-ng $(VERSION_SHORT) has been released to the public (http://netsniff-ng.org/).\n" >> .MAIL_MSG
23 $(Q)echo -e "It can be fetched via Git:\n" >> .MAIL_MSG
24 $(Q)echo -e " git clone git://github.com/borkmann/netsniff-ng.git" >> .MAIL_MSG
25 $(Q)echo -e " git checkout v$(VERSION_SHORT)\n" >> .MAIL_MSG
26 $(Q)echo -e "Or via HTTP:\n" >> .MAIL_MSG
27 $(Q)echo -e " wget http://pub.netsniff-ng.org/netsniff-ng/netsniff-ng-$(VERSION_SHORT).tar.gz\n" >> .MAIL_MSG
28 $(Q)echo -e "The release can be verified via Git (see README):\n" >> .MAIL_MSG
29 $(Q)echo -e " git tag -v v$(VERSION_SHORT)\n" >> .MAIL_MSG
30 $(Q)echo -e "Major high-level changes since the last release are:\n" >> .MAIL_MSG
31 $(Q)echo -e " *** BLURB HERE (specific bits) ***\n" >> .MAIL_MSG
32 $(Q)echo -e "Contributions since last release:\n" >> .MAIL_MSG
33 $(GIT_PEOPLE) >> .MAIL_MSG
34 $(Q)echo -e "\nGit changelog since last release:\n" >> .MAIL_MSG
35 $(GIT_LOG) >> .MAIL_MSG
37 release: tag announcement tarball
38 $(Q)echo "Released $(bold)$(VERSION_SHORT)$(normal)"
40 FIND_SOURCE_FILES = ( git ls-files '*.[hcS]' 2>/dev/null || \
41 find . \( -name .git -type d -prune \) \
42 -o \( -name '*.[hcS]' -type f -print \) )
46 $(FIND_SOURCE_FILES) | xargs ctags -a
49 $(Q)$(call RM,cscope*)
50 $(FIND_SOURCE_FILES) | xargs cscope -b
52 # these need to be specified on the command line
57 $(Q)test -n "$(COV_EMAIL)" || (echo "COV_EMAIL not set" && false)
58 $(Q)test -n "$(COV_PASSWD)" || (echo "COV_PASSWD not set" && false)
60 $(Q)$(call RM,cov-int)
61 $(Q)$(call MKDIR,cov-int)
63 $(Q)cov-build --dir cov-int $(MAKE) CCACHE=
64 $(Q)tar czvf netsniff-ng-coverity.tgz cov-int
65 $(Q)echo "Uploading snapshot to Coverity scanner"
66 $(Q)curl --form file=@netsniff-ng-coverity.tgz --form project=netsniff-ng \
67 --form password=$(COV_PASSWD) --form email=$(COV_EMAIL) \
68 --form version=`$(GIT_VERSION)` http://scan5.coverity.com/cgi-bin/upload.py
71 $(Q)echo "$(bold)Available tools from the toolkit:$(normal)"
72 $(Q)echo " <tool>:={$(TOOLS)}"
73 $(Q)echo "$(bold)Targets for building the toolkit:$(normal)"
74 $(Q)echo " all|toolkit - Build the whole toolkit"
75 $(Q)echo " allbutcurvetun - Build all except curvetun"
76 $(Q)echo " allbutmausezahn - Build all except mausezahn"
77 $(Q)echo " <tool> - Build only one of the tools"
78 $(Q)echo "$(bold)Targets for cleaning the toolkit's build files:$(normal)"
79 $(Q)echo " clean - Remove all build files"
80 $(Q)echo " <tool>_clean - Remove only one of the tool's files"
81 $(Q)echo " distclean - Remove all build and build config files"
82 $(Q)echo " mrproper - Remove all files not in source distribution"
83 $(Q)echo "$(bold)Targets for installing the toolkit:$(normal)"
84 $(Q)echo " install - Install the whole toolkit"
85 $(Q)echo " <tool>_install - Install only one of the tools"
86 $(Q)echo "$(bold)Targets for removing the toolkit:$(normal)"
87 $(Q)echo " uninstall - Remove the whole toolkit from the system"
88 $(Q)echo " <toolname>_uninstall - Remove only one of the tools"
89 $(Q)echo "$(bold)Hacking/development targets:$(normal)"
90 $(Q)echo " tag - Generate Git tag of current version"
91 $(Q)echo " tarball - Generate tarball of latest version"
92 $(Q)echo " release - Generate a new release"
93 $(Q)echo " tags - Generate sparse ctags"
94 $(Q)echo " cscope - Generate cscope files"
95 $(Q)echo "$(bold)Misc targets:$(normal)"
96 $(Q)echo " nacl - Execute the build_nacl script"
97 $(Q)echo " help - Show this help"
98 $(Q)echo "$(bold)Available parameters:$(normal)"
99 $(Q)echo " DEBUG=1 / DISTRO=1 - Enable debugging / Build for distros"
100 $(Q)echo " HARDENING=1 - Enable GCC hardening of executables"
101 $(Q)echo " PREFIX=/path - Install path prefix"
102 $(Q)echo " CROSS_COMPILE=/path-prefix - Kernel-like cross-compiling prefix"
103 $(Q)echo " CROSS_LD_LIBRARY_PATH=/path - Library search path for cross-compiling"
104 $(Q)echo " CC=cgcc - Use sparse compiler wrapper"
105 $(Q)echo " CFLAGS=\"-O2 -Wall ...\" - Overwrite CFLAGS for compilation"
106 $(Q)echo " CPPFLAGS=\"-I <path> ...\" - Additional CFLAGS for compilation"
107 $(Q)echo " LDFLAGS=\"-L <path> ...\" - Additional LDFLAGS for compilation"
108 $(Q)echo " CCACHE= - Do not use ccache for compilation"
109 $(Q)echo " Q= - Show verbose garbage"