Import release 0.1.9
[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 dist install
19
20PACKAGE:=secnet
21VERSION:=0.1.9
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:=@CFLAGS@ @DEFS@ -Wall -I$(srcdir) -I.
35LDFLAGS:=@LDFLAGS@
36LDLIBS:=@LIBS@
37
38prefix:=@prefix@
39exec_prefix:=@exec_prefix@
40sbindir:=@sbindir@
41sysconfdir:=@sysconfdir@
42transform:=@program_transform_name@
43
44TARGETS:=secnet
45
46OBJECTS:=secnet.o util.o conffile.yy.o conffile.tab.o conffile.o modules.o \
47 resolver.o random.o udp.o site.o transform.o netlink.o rsa.o dh.o \
48 serpent.o md5.o version.o tun.o slip.o sha1.o ipaddr.o log.o \
49 process.o @LIBOBJS@
50
51DISTFILES:=COPYING CREDITS INSTALL LICENSE.txt Makefile.in \
52 NEWS NOTES README TODO \
53 alloca.c \
54 conffile.c conffile.fl conffile.h conffile.y \
55 conffile_internal.h config.h.bot \
56 config.h.in config.h.top configure \
57 configure.in debian dh.c \
58 example.conf \
59 getopt.c getopt1.c getopt.h \
60 install.sh ipaddr.c ipaddr.h ipaddr.py linux log.c md5.c md5.h \
61 make-secnet-sites \
62 modules.c netlink.c netlink.h process.c process.h \
63 random.c resolver.c rsa.c \
64 secnet.c secnet.h serpent.c serpent.h serpentsboxes.h \
65 snprintf.c snprintf.h \
66 sha1.c site.c slip.c stamp-h.in transform.c tun.c udp.c \
67 unaligned.h util.c util.h
68
69%.c: %.y
70
71%.yy.c: %.fl
72 flex -o$@ $<
73
74%.tab.c: %.y
75 bison -d -o $@ $<
76
77
78all: $(TARGETS)
79
80# Automatic remaking of configuration files, from autoconf documentation
81${srcdir}/configure: configure.in
82 cd ${srcdir} && autoconf
83
84# autoheader might not change config.h.in, so touch a stamp file.
85${srcdir}/config.h.in: stamp-h.in
86${srcdir}/stamp-h.in: configure.in config.h.top config.h.bot
87 cd ${srcdir} && autoheader
88 echo timestamp > ${srcdir}/stamp-h.in
89
90config.h: stamp-h
91stamp-h: config.h.in config.status
92 ./config.status
93
94Makefile: Makefile.in config.status
95 ./config.status
96
97config.status: configure
98 ./config.status --recheck
99# End of config file remaking rules
100
101# Manual dependencies section - XXX use autodep eventually
102$(OBJECTS): config.h secnet.h util.h
103conffile.o conffile.tab.o conffile.yy.o: conffile.h conffile_internal.h
104secnet.o: conffile.h process.h
105process.o: process.h
106log.o: process.h
107md5.o: md5.h
108serpent.o transform.o: serpent.h
109serpent.o: serpentsboxes.h
110conffile.o: ipaddr.h
111site.c util.c: unaligned.h
112conffile.yy.c: conffile.fl conffile.tab.c
113conffile.tab.c: conffile.y
114netlink.o tun.o slip.o: netlink.h
115# End of manual dependencies section
116
117secnet: $(OBJECTS)
118
119version.c: Makefile
120 echo "char version[]=\"secnet-$(VERSION)\";" >version.c
121
122install: all
123 $(INSTALL_PROGRAM) -D secnet $(sbindir)/`echo secnet|sed '$(transform)'`
124 $(INSTALL_PROGRAM) -D make-secnet-sites $(sbindir)/`echo make-secnet-sites|sed '$(transform)'`
125 $(INSTALL) -D ipaddr.py $(prefix)/share/secnet/ipaddr.py
126
127clean:
128 $(RM) -f *.o *.yy.c *.tab.[ch] $(TARGETS) core version.c
129
130realclean: clean
131 $(RM) -f *~ Makefile config.h \
132 config.log config.status config.cache \
133 stamp-h Makefile.bak
134
135pfname:=$(PACKAGE)-$(VERSION)
136dist:
137 $(RM) -rf $(pfname)
138 mkdir $(pfname)
139 for i in $(DISTFILES) ; do ln -s ../$(srcdir)/$$i $(pfname)/ ; done
140 tar hcf ../$(pfname).tar $(pfname)
141 gzip -9f ../$(pfname).tar
142 $(RM) -rf $(pfname)