cleanup: move declaration of version[] into secnet.h
[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.1.18
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 # Use -DHACKY_PARALLEL if you are compiling secnet for an extremely
35 # slow machine
36 #CFLAGS:=-Wall @WRITESTRINGS@ @CFLAGS@ -DHACKY_PARALLEL
37 CFLAGS:=-Wall @WRITESTRINGS@ @CFLAGS@ \
38 -W -Wno-unused \
39 -Wno-pointer-sign -Wstrict-prototypes -Wmissing-prototypes \
40 -Wmissing-declarations -Wnested-externs -Wredundant-decls \
41 -Wpointer-arith -Wformat=2 -Winit-self \
42 -Wswitch-enum -Wunused-variable -Wbad-function-cast
43 ALL_CFLAGS:=@DEFS@ -I$(srcdir) -I. $(CFLAGS)
44 CPPFLAGS:=@CPPFLAGS@
45 LDFLAGS:=@LDFLAGS@
46 LDLIBS:=@LIBS@
47
48 prefix:=@prefix@
49 exec_prefix:=@exec_prefix@
50 sbindir:=@sbindir@
51 sysconfdir:=@sysconfdir@
52 transform:=@program_transform_name@
53
54 TARGETS:=secnet
55
56 OBJECTS:=secnet.o util.o conffile.yy.o conffile.tab.o conffile.o modules.o \
57 resolver.o random.o udp.o site.o transform.o netlink.o rsa.o dh.o \
58 serpent.o md5.o version.o tun.o slip.o sha1.o ipaddr.o log.o \
59 process.o @LIBOBJS@ \
60 hackypar.o
61
62 DISTDIRS:=debian
63 DISTFILES:=BUGS COPYING CREDITS INSTALL LICENSE.txt Makefile.in \
64 NEWS NOTES README TODO \
65 ac_prog_cc_no_writeable_strings.m4 \
66 conffile.c conffile.fl conffile.h conffile.y \
67 conffile_internal.h \
68 config.h.in configure \
69 configure.in depend.sh dh.c \
70 example.conf \
71 getopt.c getopt1.c getopt.h \
72 install-sh ipaddr.c ipaddr.h ipaddr.py linux log.c \
73 magic.h md5.c md5.h \
74 make-secnet-sites \
75 modules.c netlink.c netlink.h process.c process.h \
76 random.c resolver.c rsa.c \
77 secnet.c secnet.h serpent.c serpent.h serpentsboxes.h \
78 snprintf.c snprintf.h \
79 sha1.c site.c slip.c stamp-h.in transform.c tun.c udp.c \
80 unaligned.h util.c util.h \
81 hackypar.c hackypar.h
82 DISTSUBDIRS:=debian/copyright debian/changelog debian/control \
83 debian/init debian/rules debian/compat debian/default
84
85 %.c: %.y
86
87 %.yy.c: %.fl
88 flex -o$@ $<
89
90 %.tab.c %.tab.h: %.y
91 bison -d -o $@ $<
92
93 %.o: %.c
94 $(CC) $(CPPFLAGS) $(ALL_CFLAGS) -c $< -o $@
95
96 all: $(TARGETS)
97
98 # Automatic remaking of configuration files, from autoconf documentation
99 ${srcdir}/configure: configure.in
100 cd ${srcdir} && autoconf
101
102 # autoheader might not change config.h.in, so touch a stamp file.
103 ${srcdir}/config.h.in: stamp-h.in
104 ${srcdir}/stamp-h.in: configure.in
105 cd ${srcdir} && autoheader
106 echo timestamp > ${srcdir}/stamp-h.in
107
108 config.h: stamp-h
109 stamp-h: config.h.in config.status
110 ./config.status
111
112 Makefile: Makefile.in config.status
113 ./config.status
114
115 config.status: configure
116 ./config.status --recheck
117 # End of config file remaking rules
118
119 # C and header file dependency rules
120 SOURCES:=$(OBJECTS:.o=.c)
121 DEPENDS:=$(OBJECTS:.o=.d)
122
123 $(DEPENDS): ${srcdir}/depend.sh
124
125 %.d: %.c
126 ${srcdir}/depend.sh $(srcdir) $(CPPFLAGS) $(ALL_CFLAGS) $< > $@
127
128 -include $(DEPENDS)
129
130 # Manual dependencies section
131 conffile.yy.c: conffile.fl conffile.tab.c
132 conffile.tab.c: conffile.y
133 # End of manual dependencies section
134
135 secnet: $(OBJECTS)
136 $(CC) $(LDFLAGS) $(ALL_CFLAGS) -o $@ $(OBJECTS) $(LDLIBS)
137
138 version.c: Makefile
139 echo "#include \"secnet.h\"" >$@.new
140 echo "char version[]=\"secnet $(VERSION)\";" >>$@.new
141 mv -f $@.new $@
142
143 install: all
144 $(INSTALL) -d $(prefix)/share/secnet $(sbindir)
145 $(INSTALL_PROGRAM) secnet $(sbindir)/`echo secnet|sed '$(transform)'`
146 $(INSTALL_PROGRAM) ${srcdir}/make-secnet-sites $(sbindir)/`echo make-secnet-sites|sed '$(transform)'`
147 $(INSTALL) ${srcdir}/ipaddr.py $(prefix)/share/secnet/ipaddr.py
148
149 clean:
150 $(RM) -f *.o *.yy.c *.tab.[ch] $(TARGETS) core version.c
151 $(RM) -f *.d *~
152
153 realclean: clean
154 $(RM) -f *~ Makefile config.h *.d \
155 config.log config.status config.cache \
156 stamp-h Makefile.bak
157
158 distclean: realclean
159
160 pfname:=$(PACKAGE)-$(VERSION)
161 dist:
162 $(RM) -rf $(pfname)
163 mkdir $(pfname)
164 for i in $(DISTDIRS) ; do mkdir $(pfname)/$$i ; done
165 for i in $(DISTFILES) ; do ln -s ../$(srcdir)/$$i $(pfname)/ ; done
166 for i in $(DISTSUBDIRS) ; do ln -s ../../$(srcdir)/$$i $(pfname)/$$i ; done
167 tar hcf ../$(pfname).tar --exclude=CVS --exclude=.cvsignore $(pfname)
168 gzip -9f ../$(pfname).tar
169 $(RM) -rf $(pfname)