2 # Copyright (C) 1995-2001 Stephen Early <steve@greenend.org.uk>
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2, or (at your option)
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 # GNU General Public License for more details.
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18 .PHONY: all clean realclean distclean dist install
32 INSTALL_PROGRAM:=@INSTALL_PROGRAM@
34 CFLAGS:=-Wall @WRITESTRINGS@ @CFLAGS@ -Werror \
36 -Wno-pointer-sign -Wstrict-prototypes -Wmissing-prototypes \
37 -Wmissing-declarations -Wnested-externs -Wredundant-decls \
38 -Wpointer-arith -Wformat=2 -Winit-self \
39 -Wswitch-enum -Wunused-variable -Wbad-function-cast \
40 -Wno-strict-aliasing -fno-strict-aliasing
41 ALL_CFLAGS:=@DEFS@ -I$(srcdir) -I. $(CFLAGS) $(EXTRA_CFLAGS)
42 CPPFLAGS:=@CPPFLAGS@ $(EXTRA_CPPFLAGS)
43 LDFLAGS:=@LDFLAGS@ $(EXTRA_LDFLAGS)
44 LDLIBS:=@LIBS@ $(EXTRA_LDLIBS)
47 exec_prefix:=@exec_prefix@
49 sysconfdir:=@sysconfdir@
50 transform:=@program_transform_name@
55 OBJECTS:=secnet.o util.o conffile.yy.o conffile.tab.o conffile.o modules.o \
56 resolver.o random.o udp.o site.o transform-cbcmac.o transform-eax.o \
57 netlink.o rsa.o dh.o serpent.o serpentbe.o \
58 md5.o sha512.o version.o tun.o slip.o sha1.o ipaddr.o log.o \
62 TEST_OBJECTS:=eax-aes-test.o eax-serpent-test.o eax-serpentbe-test.o \
68 flex --header=$*.yy.h -o$@ $<
74 $(CC) $(CPPFLAGS) $(ALL_CFLAGS) -c $< -o $@
78 # Automatic remaking of configuration files, from autoconf documentation
79 ${srcdir}/configure: configure.in
80 cd ${srcdir} && autoconf
82 # autoheader might not change config.h.in, so touch a stamp file.
83 ${srcdir}/config.h.in: stamp-h.in
84 ${srcdir}/stamp-h.in: configure.in
85 cd ${srcdir} && autoheader
86 echo timestamp > ${srcdir}/stamp-h.in
89 stamp-h: config.h.in config.status
92 Makefile: Makefile.in config.status
95 config.status: configure
96 ./config.status --recheck
97 # End of config file remaking rules
99 # C and header file dependency rules
100 SOURCES:=$(OBJECTS:.o=.c) $(TEST_OBJECTS:.o=.c)
101 DEPENDS:=$(OBJECTS:.o=.d) $(TEST_OBJECTS:.o=.d)
103 $(DEPENDS): ${srcdir}/depend.sh
106 ${srcdir}/depend.sh $(srcdir) $(CPPFLAGS) $(ALL_CFLAGS) $< > $@
110 # Manual dependencies section
111 conffile.yy.c: conffile.fl conffile.tab.c
112 conffile.yy.h: conffile.yy.c
113 conffile.tab.c: conffile.y
114 # End of manual dependencies section
117 $(CC) $(LDFLAGS) $(ALL_CFLAGS) -o $@ $(OBJECTS) $(LDLIBS)
119 check: eax-aes-test.confirm eax-serpent-test.confirm \
120 eax-serpentbe-test.confirm
123 echo "#include \"secnet.h\"" >$@.new
124 echo "char version[]=\"secnet $(VERSION)\";" >>$@.new
127 eax-%-test: eax-%-test.o eax-test.o %.o
128 $(CC) $(LDFLAGS) $(ALL_CFLAGS) -o $@ $^
130 eax-%-test.confirm: eax-%-test eax-%-test.vectors
131 ./$< <$(srcdir)/eax-$*-test.vectors >$@.new
134 .PRECIOUS: eax-%-test
137 $(INSTALL) -d $(prefix)/share/secnet $(sbindir)
138 $(INSTALL) -d $(mandir)/man8
141 $(INSTALL_PROGRAM) secnet $(sbindir)/`echo secnet|sed '$(transform)'`
142 $(INSTALL_PROGRAM) ${srcdir}/make-secnet-sites $(sbindir)/`echo make-secnet-sites|sed '$(transform)'`
143 $(INSTALL) ${srcdir}/ipaddr.py $(prefix)/share/secnet/ipaddr.py
144 $(INSTALL) secnet.8 $(mandir)/man8/secnet.8
147 $(RM) -f *.o *.yy.c *.tab.[ch] $(TARGETS) core version.c
148 $(RM) -f *.d *~ eax-*-test.confirm eax-*-test
151 $(RM) -f *~ Makefile config.h *.d \
152 config.log config.status config.cache \
157 pfname:=$(PACKAGE)-$(VERSION)
158 tarfname:=../$(pfname).tar
160 $(RM) -rf $(tarfname) $(tarfname).gz
161 git archive --format=tar --prefix=$(pfname)/ HEAD -o $(tarfname)
165 # 1. Check that the tree has what you want
167 # 2. Update VERSION (above) and debian/changelog
173 # and check that the resulting tarball looks OK.
174 # Eg, untar it and build it, or have it reviewed.
176 # 3. Commit the updates to VERSION (above) and debian/changelog
178 # 4. git-tag -s v$(VERSION)
185 # 7. gpg --detach-sign ../secnet-$(VERSION).tar.gz
187 # 8. rsync -v ../secnet-$VERSION.tar.gz* \
188 # chiark:/home/ianmdlvl/public-html/secnet/download/
191 # tar zxf ~ianmdlvl/public-html/secnet/download/secnet-$(VERSION).tar.gz
192 # cd secnet-$(VERSION)
194 # fakeroot debian/rules binary
195 # mv ../secnet_0.1.18.1-1_i386.deb ~/public-html/secnet/download/
197 # 10. On chiark as user secnet:
199 # rsync ~ianmdlvl/public-html/secnet/download/secnet* .
201 # 11. write and post a release announcement