EAX: provide an implementation of EAX
[secnet] / Makefile.in
CommitLineData
974d0468
SE
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
d3fe100d 18.PHONY: all clean realclean distclean dist install
2fe58dfd
SE
19
20PACKAGE:=secnet
37b5bdcf 21VERSION:=0.2.1
2fe58dfd
SE
22
23@SET_MAKE@
24
25srcdir:=@srcdir@
26VPATH:=@srcdir@
27
974d0468
SE
28SHELL:=/bin/sh
29RM:=@RM@
30CC:=@CC@
31INSTALL:=@INSTALL@
32INSTALL_PROGRAM:=@INSTALL_PROGRAM@
2fe58dfd 33
0ade8ecc 34CFLAGS:=-Wall @WRITESTRINGS@ @CFLAGS@ -Werror \
18ca0b44
IJ
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 \
7f861e63
RK
39 -Wswitch-enum -Wunused-variable -Wbad-function-cast \
40 -Wno-strict-aliasing -fno-strict-aliasing
68438849
IJ
41ALL_CFLAGS:=@DEFS@ -I$(srcdir) -I. $(CFLAGS) $(EXTRA_CFLAGS)
42CPPFLAGS:=@CPPFLAGS@ $(EXTRA_CPPFLAGS)
43LDFLAGS:=@LDFLAGS@ $(EXTRA_LDFLAGS)
44LDLIBS:=@LIBS@ $(EXTRA_LDLIBS)
2fe58dfd 45
974d0468
SE
46prefix:=@prefix@
47exec_prefix:=@exec_prefix@
48sbindir:=@sbindir@
49sysconfdir:=@sysconfdir@
50transform:=@program_transform_name@
3ca86f6d 51mandir:=@mandir@
974d0468 52
2fe58dfd
SE
53TARGETS:=secnet
54
55OBJECTS:=secnet.o util.o conffile.yy.o conffile.tab.o conffile.o modules.o \
56 resolver.o random.o udp.o site.o transform.o netlink.o rsa.o dh.o \
af43f0b7 57 serpentbe.o md5.o version.o tun.o slip.o sha1.o ipaddr.o log.o \
3b83c932
SE
58 process.o @LIBOBJS@ \
59 hackypar.o
9d3a4132 60
9018e07a
IJ
61TEST_OBJECTS:=eax-aes-test.o eax-serpent-test.o eax-serpentbe-test.o \
62 eax-test.o aes.o
63
2fe58dfd
SE
64%.c: %.y
65
66%.yy.c: %.fl
27f5042b 67 flex --header=$*.yy.h -o$@ $<
2fe58dfd 68
76eca292 69%.tab.c %.tab.h: %.y
8689b3a9 70 bison -d -o $@ $<
2fe58dfd 71
fe5e9cc4
SE
72%.o: %.c
73 $(CC) $(CPPFLAGS) $(ALL_CFLAGS) -c $< -o $@
2fe58dfd 74
9018e07a 75all: $(TARGETS) check
2fe58dfd 76
8689b3a9
SE
77# Automatic remaking of configuration files, from autoconf documentation
78${srcdir}/configure: configure.in
79 cd ${srcdir} && autoconf
80
81# autoheader might not change config.h.in, so touch a stamp file.
82${srcdir}/config.h.in: stamp-h.in
f74f5f43 83${srcdir}/stamp-h.in: configure.in
8689b3a9
SE
84 cd ${srcdir} && autoheader
85 echo timestamp > ${srcdir}/stamp-h.in
86
87config.h: stamp-h
88stamp-h: config.h.in config.status
89 ./config.status
90
974d0468 91Makefile: Makefile.in config.status
8689b3a9 92 ./config.status
974d0468
SE
93
94config.status: configure
8689b3a9
SE
95 ./config.status --recheck
96# End of config file remaking rules
59635212 97
d3fe100d 98# C and header file dependency rules
9018e07a
IJ
99SOURCES:=$(OBJECTS:.o=.c) $(TEST_OBJECTS:.o=.c)
100DEPENDS:=$(OBJECTS:.o=.d) $(TEST_OBJECTS:.o=.d)
d3fe100d
SE
101
102$(DEPENDS): ${srcdir}/depend.sh
103
104%.d: %.c
ea7ec970 105 ${srcdir}/depend.sh $(srcdir) $(CPPFLAGS) $(ALL_CFLAGS) $< > $@
d3fe100d
SE
106
107-include $(DEPENDS)
108
109# Manual dependencies section
8689b3a9 110conffile.yy.c: conffile.fl conffile.tab.c
27f5042b 111conffile.yy.h: conffile.yy.c
8689b3a9
SE
112conffile.tab.c: conffile.y
113# End of manual dependencies section
974d0468 114
2fe58dfd 115secnet: $(OBJECTS)
fe5e9cc4 116 $(CC) $(LDFLAGS) $(ALL_CFLAGS) -o $@ $(OBJECTS) $(LDLIBS)
2fe58dfd 117
9018e07a
IJ
118check: eax-aes-test.confirm eax-serpent-test.confirm \
119 eax-serpentbe-test.confirm
120
974d0468 121version.c: Makefile
fcbc5905
IJ
122 echo "#include \"secnet.h\"" >$@.new
123 echo "char version[]=\"secnet $(VERSION)\";" >>$@.new
124 mv -f $@.new $@
974d0468 125
9018e07a
IJ
126eax-%-test: eax-%-test.o eax-test.o %.o
127 $(CC) $(LDFLAGS) $(ALL_CFLAGS) -o $@ $^
128
129eax-%-test.confirm: eax-%-test eax-%-test.vectors
130 ./$< <$(srcdir)/eax-$*-test.vectors >$@.new
131 mv -f $@.new $@
132
133.PRECIOUS: eax-%-test
134
60fe3102 135installdirs:
d3fe100d 136 $(INSTALL) -d $(prefix)/share/secnet $(sbindir)
3ca86f6d 137 $(INSTALL) -d $(mandir)/man8
60fe3102
RK
138
139install: installdirs
d3fe100d
SE
140 $(INSTALL_PROGRAM) secnet $(sbindir)/`echo secnet|sed '$(transform)'`
141 $(INSTALL_PROGRAM) ${srcdir}/make-secnet-sites $(sbindir)/`echo make-secnet-sites|sed '$(transform)'`
142 $(INSTALL) ${srcdir}/ipaddr.py $(prefix)/share/secnet/ipaddr.py
3ca86f6d 143 $(INSTALL) secnet.8 $(mandir)/man8/secnet.8
974d0468 144
2fe58dfd 145clean:
8689b3a9 146 $(RM) -f *.o *.yy.c *.tab.[ch] $(TARGETS) core version.c
9018e07a 147 $(RM) -f *.d *~ eax-*-test.confirm eax-*-test
2fe58dfd
SE
148
149realclean: clean
d3fe100d 150 $(RM) -f *~ Makefile config.h *.d \
8689b3a9
SE
151 config.log config.status config.cache \
152 stamp-h Makefile.bak
2fe58dfd 153
469fd1d9
SE
154distclean: realclean
155
974d0468 156pfname:=$(PACKAGE)-$(VERSION)
2562e34b 157tarfname:=../$(pfname).tar
974d0468 158dist:
2562e34b
IJ
159 $(RM) -rf $(tarfname) $(tarfname).gz
160 git archive --format=tar --prefix=$(pfname)/ HEAD -o $(tarfname)
161 gzip -9f $(tarfname)
162
163# Release checklist:
164# 1. Check that the tree has what you want
165#
66ee7152
IJ
166# 2. Update VERSION (above) and debian/changelog
167# but DO NOT COMMIT
2562e34b
IJ
168#
169# 3. Run
170# ./configure
171# make dist
172# and check that the resulting tarball looks OK.
173# Eg, untar it and build it, or have it reviewed.
174#
66ee7152 175# 3. Commit the updates to VERSION (above) and debian/changelog
2562e34b
IJ
176#
177# 4. git-tag -s v$(VERSION)
178#
179# 5. git-push origin
180#
fd44936f
IJ
181# 6. Run, again,
182# make dist
183#
184# 7. gpg --detach-sign ../secnet-$(VERSION).tar.gz
b57cc2eb 185#
fd44936f 186# 8. rsync -v ../secnet-$VERSION.tar.gz* \
2562e34b
IJ
187# chiark:/home/ianmdlvl/public-html/secnet/download/
188#
fd44936f 189# 9. On chiark:
66ee7152
IJ
190# tar zxf ~ianmdlvl/public-html/secnet/download/secnet-$(VERSION).tar.gz
191# cd secnet-$(VERSION)
192# debian/rules build
193# fakeroot debian/rules binary
fd44936f 194# mv ../secnet_0.1.18.1-1_i386.deb ~/public-html/secnet/download/
66ee7152 195#
fd44936f 196# 10. On chiark as user secnet:
66ee7152
IJ
197# cd ~secnet/
198# rsync ~ianmdlvl/public-html/secnet/download/secnet* .
199#
fd44936f 200# 11. write and post a release announcement