3 # This file is part of secnet.
4 # See README for full list of copyright holders.
6 # secnet is free software; you can redistribute it and/or modify it
7 # under the terms of the GNU General Public License as published by
8 # the Free Software Foundation; either version 3 of the License, or
9 # (at your option) any later version.
11 # secnet is distributed in the hope that it will be useful, but
12 # WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 # General Public License for more details.
16 # You should have received a copy of the GNU General Public License
17 # version 3 along with secnet; if not, see
18 # https://www.gnu.org/licenses/gpl.html.
20 .PHONY: all clean realclean distclean dist install
30 INSTALL_PROGRAM:=@INSTALL_PROGRAM@
31 INSTALL_SCRIPT:=@INSTALL_SCRIPT@
32 INSTALL_DATA:=@INSTALL_DATA@
34 prefix:=$(DESTDIR)@prefix@
35 exec_prefix:=@exec_prefix@
37 sysconfdir:=$(DESTDIR)@sysconfdir@
38 datarootdir:=@datarootdir@
39 transform:=@program_transform_name@
42 ALL_CFLAGS:=@DEFS@ -I$(srcdir) -I. $(CFLAGS) $(EXTRA_CFLAGS)
43 CPPFLAGS:=@CPPFLAGS@ -DDATAROOTDIR='"$(datarootdir)"' $(EXTRA_CPPFLAGS)
44 LDFLAGS:=@LDFLAGS@ $(EXTRA_LDFLAGS)
45 LDLIBS:=@LIBS@ $(EXTRA_LDLIBS)
49 OBJECTS:=secnet.o util.o conffile.yy.o conffile.tab.o conffile.o modules.o \
50 resolver.o random.o udp.o site.o transform-cbcmac.o transform-eax.o \
51 comm-common.o polypath.o \
52 netlink.o rsa.o dh.o serpent.o serpentbe.o \
53 md5.o sha512.o tun.o slip.o sha1.o ipaddr.o log.o \
56 # version.o is handled specially below and in the link rule for secnet.
58 PYMODULES := ipaddrset.py argparseactionnoyes.py
60 TEST_OBJECTS:=eax-aes-test.o eax-serpent-test.o eax-serpentbe-test.o \
63 ifeq (version.o,$(MAKECMDGOALS))
68 &OBJECTS += $(OBJECTS) $(TEST_OBJECTS)
70 STALE_PYTHON_FILES= $(foreach e, py pyc, \
71 $(foreach p, /usr /usr/local, \
72 $(foreach l, ipaddr, \
73 $(DESTDIR)$p/share/secnet/$l.$e \
79 flex --header=$*.yy.h -o$@ $<
84 %.o: %.c conffile.yy.h
85 $(CC) $(CPPFLAGS) $(ALL_CFLAGS) $(CDEPS_CFLAGS) -c $< -o $@
89 ${srcdir}/config.h.in: configure.ac
90 cd ${srcdir} && autoheader
93 MAKEFILE_TEMPLATES += config.h.in
94 CONFIG_STATUS_OUTPUTS += config.h
96 # Manual dependencies section
97 conffile.yy.c: conffile.fl conffile.tab.c
98 conffile.yy.h: conffile.yy.c
99 conffile.tab.c: conffile.y
100 # End of manual dependencies section
102 conffile.yy.o: ALL_CFLAGS += -Wno-sign-compare
105 $(MAKE) -f main.mk version.o # *.o $(filter-out %.o, $^)
106 $(CC) $(LDFLAGS) $(ALL_CFLAGS) -o $@ $(OBJECTS) version.o $(LDLIBS)
107 # We (always) regenerate the version, but only if we regenerate the
108 # binary. (This is necessary as the version string is can depend on
109 # any of the source files, eg to see whether "+" is needed.)
111 ifneq (,$(wildcard .git/HEAD))
112 # If we have (eg) committed, relink and thus regenerate the version
113 # with the new info from git describe.
114 secnet: Makefile .git/HEAD $(wildcard $(shell sed -n 's#^ref: #.git/#p' .git/HEAD))
115 secnet: $(wildcard .git/packed-refs)
120 &TARGETS_check = eax-aes-test.confirm eax-serpent-test.confirm \
121 eax-serpentbe-test.confirm ipaddrset.confirm
123 &TARGETS_fullcheck += $(&TARGETS_check)
124 &TARGETS_fullcheck += msgcode-test.confirm
127 rm -f $(&TARGETS_check)
128 rm -rf $(addsuffix /d-*, $(TESTDIRS))
129 $(MAKE) -f main.mk check
133 echo "#include \"secnet.h\"" >$@.new
134 @set -ex; if test -e .git && type -p git >/dev/null; then \
135 v=$$(git describe --match 'v*'); v=$${v#v}; \
136 if ! git diff --quiet HEAD; then v="$$v+"; fi; \
140 echo "char version[]=\"secnet $$v\";" >>$@.new
143 eax-%-test: eax-%-test.o eax-test.o %.o
144 $(CC) $(LDFLAGS) $(ALL_CFLAGS) -o $@ $^
146 eax-%-test.confirm: eax-%-test eax-%-test.vectors
147 ./$< <$(srcdir)/eax-$*-test.vectors >$@.new
150 &CDEPS_OBJECTS += msgcode-test.o
152 msgcode-test: msgcode-test.o
153 $(CC) $(LDFLAGS) $(ALL_CFLAGS) -o $@ $^
155 msgcode-test.confirm: msgcode-test
159 ipaddrset.confirm: ipaddrset-test.py ipaddrset.py ipaddrset-test.expected
160 $(srcdir)/ipaddrset-test.py >ipaddrset-test.new
161 diff -u $(srcdir)/ipaddrset-test.expected ipaddrset-test.new
164 .PRECIOUS: eax-%-test
167 $(INSTALL) -d $(prefix)/share/secnet $(sbindir)
168 $(INSTALL) -d $(mandir)/man8
169 $(INSTALL) -d $(datarootdir)/secnet
172 set -e; ok=true; for f in $(STALE_PYTHON_FILES); do \
173 if test -e $$f; then \
174 echo >\&2 "ERROR: $$f still exists "\
175 "- try \`make install-force'"; \
180 $(INSTALL_PROGRAM) secnet $(sbindir)/`echo secnet|sed '$(transform)'`
181 $(INSTALL_PROGRAM) ${srcdir}/make-secnet-sites $(sbindir)/`echo make-secnet-sites|sed '$(transform)'`
182 set -e; for m in $(PYMODULES); do \
183 $(INSTALL_DATA) ${srcdir}/$$m $(prefix)/share/secnet/$$m; \
185 $(INSTALL_SCRIPT) ${srcdir}/polypath-interface-monitor-linux \
186 $(datarootdir)/secnet/.
187 $(INSTALL_DATA) ${srcdir}/secnet.8 $(mandir)/man8/secnet.8
190 rm -f $(STALE_PYTHON_FILES)
191 $(MAKE) -f main.mk install
194 &CLEAN += $(TARGETS) $(&TARGETS_check) $(&TARGETS_fullcheck)
197 $(RM) -f *.o *.yy.[ch] *.tab.[ch] core version.c
198 $(RM) -f *.pyc *~ eax-*-test.confirm eax-*-test
199 $(RM) -rf __pycache__
200 $(RM) -f msgcode-test.confirm msgcode-test
203 $(RM) -f *~ Makefile config.h \
204 config.log config.status config.cache \
205 config.stamp Makefile.bak
207 distclean:: realclean
209 include subdirmk/regen.mk
213 # 0. Use this checklist from Subdir.sd.mk
215 # 1. Check that the tree has what you want
217 # 2. Update changelog:
218 # gbp dch --since=<PREVIOUS VERSION>
219 # and then edit debian/changelog.
221 # 3. Update VERSION (in this file, above) and
222 # finalise debian/changelog (removing ~ from version) and commit.
224 # 4. Build source and binaries:
225 # dgit -wgf sbuild -A -c stretch -j8
227 # 5. dpkg -i on zealot just to check
228 # dpkg -i ~ian/things/Fvpn/bpd/secnet_${VERSION}_amd64.deb
230 # 6. run it on chiark
231 # check we can still ping davenant and chiark
233 # 7. Make git tag and source tarball signature:
234 # git-tag -u general -m "secnet $VERSION" -s v${VERSION//\~/_}
235 # gpg -u general --detach-sign ../bpd/secnet_$VERSION.tar.gz
237 # 8. Publish the branch and distriubtion files:
238 # git-push origin v${VERSION//\~/_} v${VERSION//\~/_}~0:master
239 # dcmd rsync -v ../bpd/secnet_${VERSION}_multi.changes chiark:/home/ianmdlvl/public-html/secnet/download/
241 # 9. Sort out html. On chiark as user secnet:
242 # cd ~secnet/public-html/release/
245 # ln -s /home/ianmdlvl/public-html/secnet/download/secnet?$VERSION* .
246 # ln -sfn $VERSION ../current
248 # 10. write and post a release announcement
250 # dcmd sha256sum secnet_${VERSION}_multi.changes
252 # gpg --clearsign ../release-announcement
253 # rsync -vP ../release-announcement.asc c:mail/d/
255 # 11. bump changelog version in master, to new version with ~