identify.c: Stash a copy of the caller's description string.
[fwd] / Makefile.am
1 ### -*-makefile-*-
2 ###
3 ### Makefile for fwd
4 ###
5 ### (c) 1999 Mark Wooding
6 ###
7
8 ###----- Licensing notice ---------------------------------------------------
9 ###
10 ### This file is part of the `fwd' port forwarder.
11 ###
12 ### `fwd' is free software; you can redistribute it and/or modify
13 ### it under the terms of the GNU General Public License as published by
14 ### the Free Software Foundation; either version 2 of the License, or
15 ### (at your option) any later version.
16 ###
17 ### `fwd' is distributed in the hope that it will be useful,
18 ### but WITHOUT ANY WARRANTY; without even the implied warranty of
19 ### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 ### GNU General Public License for more details.
21 ###
22 ### You should have received a copy of the GNU General Public License
23 ### along with `fwd'; if not, write to the Free Software Foundation,
24 ### Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25
26 bin_PROGRAMS =
27 noinst_PROGRAMS =
28 man_MANS =
29
30 EXTRA_DIST =
31 BUILT_SOURCES =
32 CLEANFILES =
33 MAINTAINERCLEANFILES =
34
35 AM_CFLAGS = $(mLib_CFLAGS)
36
37 ###--------------------------------------------------------------------------
38 ### Documentation.
39
40 make_manpage = $(AM_V_GEN)perl \
41 $(srcdir)/make-manpage <$(srcdir)/fwd.1.in
42 EXTRA_DIST += fwd.1.in make-manpage
43
44 ## The manual page.
45 man_MANS += fwd.1
46 CLEANFILES += fwd.1
47
48 fwd.1: fwd.1.in make-manpage
49 $(make_manpage) man >$@.new && mv $@.new $@
50
51 ## The grammar summary.
52 MAINTAINERCLEANFILES += $(srcdir)/GRAMMAR
53 EXTRA_DIST += GRAMMAR
54
55 $(srcdir)/GRAMMAR: fwd.1.in make-manpage
56 $(make_manpage) text >$@.new && mv $@.new $@
57
58 ###--------------------------------------------------------------------------
59 ### The main port forwarder.
60
61 bin_PROGRAMS += fwd
62 fwd_SOURCES =
63 fwd_LDADD = $(mLib_LIBS)
64
65 ## Main program.
66 fwd_SOURCES += fwd.c fwd.h
67
68 fwd_SOURCES += chan.c
69 fwd_SOURCES += endpt.c
70 fwd_SOURCES += source.c
71
72 fwd_SOURCES += conf.c
73 fwd_SOURCES += scan.c
74 fwd_SOURCES += fattr.c
75
76 fwd_SOURCES += reffd.c
77
78 ## Sockets.
79 fwd_SOURCES += socket.c
80
81 fwd_SOURCES += un.c
82
83 fwd_SOURCES += inet.c
84 fwd_SOURCES += acl.c
85 fwd_SOURCES += identify.c
86 fwd_SOURCES += privconn.c
87
88 ## Files.
89 fwd_SOURCES += file.c
90
91 ## Executables.
92 fwd_SOURCES += exec.c
93
94 ## Documentation.
95 fwd_SOURCES += mantext.c
96 CLEANFILES += mantext.c
97 BUILT_SOURCES += mantext.c
98
99 mantext.c: fwd.1.in make-manpage
100 $(make_manpage) c >$@.new && mv $@.new $@
101
102 ###--------------------------------------------------------------------------
103 ### The blast tool.
104
105 noinst_PROGRAMS += blast
106 blast_SOURCES = blast.c
107 blast_LDADD = $(mLib_LIBS)
108
109 ###--------------------------------------------------------------------------
110 ### Other infrastructure.
111
112 ## Set the release number.
113 dist-hook:
114 echo "$(VERSION)" >$(distdir)/RELEASE
115
116 ###--------------------------------------------------------------------------
117 ### Debian.
118
119 ## Main Debian files.
120 EXTRA_DIST += debian/rules
121 EXTRA_DIST += debian/changelog
122 EXTRA_DIST += debian/compat
123 EXTRA_DIST += debian/control
124 EXTRA_DIST += debian/copyright
125
126 ## Run the daemon automatically.
127 EXTRA_DIST += debian/fwd.init
128 EXTRA_DIST += debian/fwd.postinst
129
130 ###----- That's all, folks --------------------------------------------------