changelog, Makefile.in: finalise 0.3.1~beta2
[secnet] / Makefile.in
1 # Makefile for secnet
2 # Copyright (C) 1995-2001 Stephen Early <steve@greenend.org.uk>
3
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)
7 # any later version.
8
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.
13
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.
17
18 .PHONY: all clean realclean distclean dist install
19
20 PACKAGE:=secnet
21 VERSION:=0.3.1~beta2
22
23 @SET_MAKE@
24
25 srcdir:=@srcdir@
26 VPATH:=@srcdir@
27
28 SHELL:=/bin/sh
29 RM:=@RM@
30 CC:=@CC@
31 INSTALL:=@INSTALL@
32 INSTALL_PROGRAM:=@INSTALL_PROGRAM@
33
34 CFLAGS:=-Wall @WRITESTRINGS@ @CFLAGS@ -Werror \
35 -W -Wno-unused \
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)
45
46 prefix:=@prefix@
47 exec_prefix:=@exec_prefix@
48 sbindir:=@sbindir@
49 sysconfdir:=@sysconfdir@
50 transform:=@program_transform_name@
51 mandir:=@mandir@
52
53 TARGETS:=secnet
54
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 \
59 process.o @LIBOBJS@ \
60 hackypar.o
61
62 TEST_OBJECTS:=eax-aes-test.o eax-serpent-test.o eax-serpentbe-test.o \
63 eax-test.o aes.o
64
65 %.c: %.y
66
67 %.yy.c: %.fl
68 flex --header=$*.yy.h -o$@ $<
69
70 %.tab.c %.tab.h: %.y
71 bison -d -o $@ $<
72
73 %.o: %.c
74 $(CC) $(CPPFLAGS) $(ALL_CFLAGS) -c $< -o $@
75
76 all: $(TARGETS) check
77
78 # Automatic remaking of configuration files, from autoconf documentation
79 ${srcdir}/configure: configure.in
80 cd ${srcdir} && autoconf
81
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
87
88 config.h: stamp-h
89 stamp-h: config.h.in config.status
90 ./config.status
91
92 Makefile: Makefile.in config.status
93 ./config.status
94
95 config.status: configure
96 ./config.status --recheck
97 # End of config file remaking rules
98
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)
102
103 $(DEPENDS): ${srcdir}/depend.sh
104
105 %.d: %.c
106 ${srcdir}/depend.sh $(srcdir) $(CPPFLAGS) $(ALL_CFLAGS) $< > $@
107
108 -include $(DEPENDS)
109
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
115
116 secnet: $(OBJECTS)
117 $(CC) $(LDFLAGS) $(ALL_CFLAGS) -o $@ $(OBJECTS) $(LDLIBS)
118
119 check: eax-aes-test.confirm eax-serpent-test.confirm \
120 eax-serpentbe-test.confirm
121
122 version.c: Makefile
123 echo "#include \"secnet.h\"" >$@.new
124 echo "char version[]=\"secnet $(VERSION)\";" >>$@.new
125 mv -f $@.new $@
126
127 eax-%-test: eax-%-test.o eax-test.o %.o
128 $(CC) $(LDFLAGS) $(ALL_CFLAGS) -o $@ $^
129
130 eax-%-test.confirm: eax-%-test eax-%-test.vectors
131 ./$< <$(srcdir)/eax-$*-test.vectors >$@.new
132 mv -f $@.new $@
133
134 .PRECIOUS: eax-%-test
135
136 installdirs:
137 $(INSTALL) -d $(prefix)/share/secnet $(sbindir)
138 $(INSTALL) -d $(mandir)/man8
139
140 install: installdirs
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
145
146 clean:
147 $(RM) -f *.o *.yy.c *.tab.[ch] $(TARGETS) core version.c
148 $(RM) -f *.d *~ eax-*-test.confirm eax-*-test
149
150 realclean: clean
151 $(RM) -f *~ Makefile config.h *.d \
152 config.log config.status config.cache \
153 stamp-h Makefile.bak
154
155 distclean: realclean
156
157 pfname:=$(PACKAGE)-$(VERSION)
158 tarfname:=../$(pfname).tar
159 dist:
160 $(RM) -rf $(tarfname) $(tarfname).gz
161 git archive --format=tar --prefix=$(pfname)/ HEAD -o $(tarfname)
162 gzip -9f $(tarfname)
163
164 # Release checklist:
165 # 1. Check that the tree has what you want
166 #
167 # 2. Update VERSION (above) and debian/changelog
168 # but DO NOT COMMIT
169 #
170 # 3. Run
171 # ./configure
172 # make dist
173 # and check that the resulting tarball looks OK.
174 # Eg, untar it and build it, or have it reviewed.
175 #
176 # 3. Commit the updates to VERSION (above) and debian/changelog
177 #
178 # 4. git-tag -m "secnet $VERSION" -s v$VERSION
179 #
180 # 5. git-push origin
181 #
182 # 6. Run, again,
183 # make dist
184 #
185 # 7. gpg --detach-sign ../secnet-$VERSION.tar.gz
186 #
187 # 8. rsync -v ../secnet-$VERSION.tar.gz* \
188 # chiark:/home/ianmdlvl/public-html/secnet/download/
189 #
190 # 9. On chiark:
191 # tar zxf ~ianmdlvl/public-html/secnet/download/secnet-$VERSION.tar.gz
192 # cd secnet-$VERSION
193 # debian/rules build
194 # fakeroot debian/rules binary
195 # mv ../secnet_${VERSION}_i386.deb ~ianmdlvl/public-html/secnet/download/
196 #
197 # 10. On chiark as user secnet:
198 # cd ~secnet/public-html/release/
199 # mkdir $VERSION
200 # cd $VERSION
201 # ln -s /home/ianmdlvl/public-html/secnet/download/secnet?$VERSION* .
202 #
203 # 11. write and post a release announcement