Update VERSION
[secnet] / Makefile.in
... / ...
CommitLineData
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
20PACKAGE:=secnet
21VERSION:=0.2.1
22
23@SET_MAKE@
24
25srcdir:=@srcdir@
26VPATH:=@srcdir@
27
28SHELL:=/bin/sh
29RM:=@RM@
30CC:=@CC@
31INSTALL:=@INSTALL@
32INSTALL_PROGRAM:=@INSTALL_PROGRAM@
33
34CFLAGS:=-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
41ALL_CFLAGS:=@DEFS@ -I$(srcdir) -I. $(CFLAGS)
42CPPFLAGS:=@CPPFLAGS@
43LDFLAGS:=@LDFLAGS@
44LDLIBS:=@LIBS@
45
46prefix:=@prefix@
47exec_prefix:=@exec_prefix@
48sbindir:=@sbindir@
49sysconfdir:=@sysconfdir@
50transform:=@program_transform_name@
51mandir:=@mandir@
52
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 \
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
72all: $(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
84config.h: stamp-h
85stamp-h: config.h.in config.status
86 ./config.status
87
88Makefile: Makefile.in config.status
89 ./config.status
90
91config.status: configure
92 ./config.status --recheck
93# End of config file remaking rules
94
95# C and header file dependency rules
96SOURCES:=$(OBJECTS:.o=.c)
97DEPENDS:=$(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
107conffile.yy.c: conffile.fl conffile.tab.c
108conffile.yy.h: conffile.yy.c
109conffile.tab.c: conffile.y
110# End of manual dependencies section
111
112secnet: $(OBJECTS)
113 $(CC) $(LDFLAGS) $(ALL_CFLAGS) -o $@ $(OBJECTS) $(LDLIBS)
114
115version.c: Makefile
116 echo "#include \"secnet.h\"" >$@.new
117 echo "char version[]=\"secnet $(VERSION)\";" >>$@.new
118 mv -f $@.new $@
119
120installdirs:
121 $(INSTALL) -d $(prefix)/share/secnet $(sbindir)
122 $(INSTALL) -d $(mandir)/man8
123
124install: 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
130clean:
131 $(RM) -f *.o *.yy.c *.tab.[ch] $(TARGETS) core version.c
132 $(RM) -f *.d *~
133
134realclean: clean
135 $(RM) -f *~ Makefile config.h *.d \
136 config.log config.status config.cache \
137 stamp-h Makefile.bak
138
139distclean: realclean
140
141pfname:=$(PACKAGE)-$(VERSION)
142tarfname:=../$(pfname).tar
143dist:
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. gpg --detach-sign ../secnet-$(VERSION).tar.gz
167#
168# 7. rsync -v ../secnet-$VERSION.tar.gz* \
169# chiark:/home/ianmdlvl/public-html/secnet/download/
170#
171# 8. On chiark:
172# tar zxf ~ianmdlvl/public-html/secnet/download/secnet-$(VERSION).tar.gz
173# cd secnet-$(VERSION)
174# debian/rules build
175# fakeroot debian/rules binary
176# cp ../secnet_0.1.18.1-1_i386.deb ~/public-html/secnet/download/
177#
178# 9. On chiark as user secnet:
179# cd ~secnet/
180# rsync ~ianmdlvl/public-html/secnet/download/secnet* .
181#
182# 9. write and post a release announcement