memcmp: Introduce and use consttime_memeq
[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.2.1
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.o netlink.o rsa.o dh.o \
57 serpent.o md5.o version.o tun.o slip.o sha1.o ipaddr.o log.o \
58 process.o @LIBOBJS@ \
59 hackypar.o
60
61 %.c: %.y
62
63 %.yy.c: %.fl
64 flex --header=$*.yy.h -o$@ $<
65
66 %.tab.c %.tab.h: %.y
67 bison -d -o $@ $<
68
69 %.o: %.c
70 $(CC) $(CPPFLAGS) $(ALL_CFLAGS) -c $< -o $@
71
72 all: $(TARGETS)
73
74 # Automatic remaking of configuration files, from autoconf documentation
75 ${srcdir}/configure: configure.in
76 cd ${srcdir} && autoconf
77
78 # autoheader might not change config.h.in, so touch a stamp file.
79 ${srcdir}/config.h.in: stamp-h.in
80 ${srcdir}/stamp-h.in: configure.in
81 cd ${srcdir} && autoheader
82 echo timestamp > ${srcdir}/stamp-h.in
83
84 config.h: stamp-h
85 stamp-h: config.h.in config.status
86 ./config.status
87
88 Makefile: Makefile.in config.status
89 ./config.status
90
91 config.status: configure
92 ./config.status --recheck
93 # End of config file remaking rules
94
95 # C and header file dependency rules
96 SOURCES:=$(OBJECTS:.o=.c)
97 DEPENDS:=$(OBJECTS:.o=.d)
98
99 $(DEPENDS): ${srcdir}/depend.sh
100
101 %.d: %.c
102 ${srcdir}/depend.sh $(srcdir) $(CPPFLAGS) $(ALL_CFLAGS) $< > $@
103
104 -include $(DEPENDS)
105
106 # Manual dependencies section
107 conffile.yy.c: conffile.fl conffile.tab.c
108 conffile.yy.h: conffile.yy.c
109 conffile.tab.c: conffile.y
110 # End of manual dependencies section
111
112 secnet: $(OBJECTS)
113 $(CC) $(LDFLAGS) $(ALL_CFLAGS) -o $@ $(OBJECTS) $(LDLIBS)
114
115 version.c: Makefile
116 echo "#include \"secnet.h\"" >$@.new
117 echo "char version[]=\"secnet $(VERSION)\";" >>$@.new
118 mv -f $@.new $@
119
120 installdirs:
121 $(INSTALL) -d $(prefix)/share/secnet $(sbindir)
122 $(INSTALL) -d $(mandir)/man8
123
124 install: installdirs
125 $(INSTALL_PROGRAM) secnet $(sbindir)/`echo secnet|sed '$(transform)'`
126 $(INSTALL_PROGRAM) ${srcdir}/make-secnet-sites $(sbindir)/`echo make-secnet-sites|sed '$(transform)'`
127 $(INSTALL) ${srcdir}/ipaddr.py $(prefix)/share/secnet/ipaddr.py
128 $(INSTALL) secnet.8 $(mandir)/man8/secnet.8
129
130 clean:
131 $(RM) -f *.o *.yy.c *.tab.[ch] $(TARGETS) core version.c
132 $(RM) -f *.d *~
133
134 realclean: clean
135 $(RM) -f *~ Makefile config.h *.d \
136 config.log config.status config.cache \
137 stamp-h Makefile.bak
138
139 distclean: realclean
140
141 pfname:=$(PACKAGE)-$(VERSION)
142 tarfname:=../$(pfname).tar
143 dist:
144 $(RM) -rf $(tarfname) $(tarfname).gz
145 git archive --format=tar --prefix=$(pfname)/ HEAD -o $(tarfname)
146 gzip -9f $(tarfname)
147
148 # Release checklist:
149 # 1. Check that the tree has what you want
150 #
151 # 2. Update VERSION (above) and debian/changelog
152 # but DO NOT COMMIT
153 #
154 # 3. Run
155 # ./configure
156 # make dist
157 # and check that the resulting tarball looks OK.
158 # Eg, untar it and build it, or have it reviewed.
159 #
160 # 3. Commit the updates to VERSION (above) and debian/changelog
161 #
162 # 4. git-tag -s v$(VERSION)
163 #
164 # 5. git-push origin
165 #
166 # 6. Run, again,
167 # make dist
168 #
169 # 7. gpg --detach-sign ../secnet-$(VERSION).tar.gz
170 #
171 # 8. rsync -v ../secnet-$VERSION.tar.gz* \
172 # chiark:/home/ianmdlvl/public-html/secnet/download/
173 #
174 # 9. On chiark:
175 # tar zxf ~ianmdlvl/public-html/secnet/download/secnet-$(VERSION).tar.gz
176 # cd secnet-$(VERSION)
177 # debian/rules build
178 # fakeroot debian/rules binary
179 # mv ../secnet_0.1.18.1-1_i386.deb ~/public-html/secnet/download/
180 #
181 # 10. On chiark as user secnet:
182 # cd ~secnet/
183 # rsync ~ianmdlvl/public-html/secnet/download/secnet* .
184 #
185 # 11. write and post a release announcement