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