Consolidate all the external definitions into a single header.
[fwd] / Makefile.am
... / ...
CommitLineData
1### -*-makefile-*-
2###
3### Makefile for fw
4###
5### (c) 1999 Mark Wooding
6###
7
8###----- Licensing notice ---------------------------------------------------
9###
10### This file is part of the `fw' port forwarder.
11###
12### `fw' 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### `fw' 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 `fw'; if not, write to the Free Software Foundation,
24### Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25
26bin_PROGRAMS =
27man_MANS =
28
29EXTRA_DIST =
30BUILT_SOURCES =
31CLEANFILES =
32MAINTAINERCLEANFILES =
33
34AM_CFLAGS = $(mLib_CFLAGS)
35
36###--------------------------------------------------------------------------
37### Documentation.
38
39make_manpage = perl $(srcdir)/make-manpage <$(srcdir)/fw.1.in
40EXTRA_DIST += fw.1.in make-manpage
41
42## The manual page.
43man_MANS += fw.1
44CLEANFILES += fw.1
45
46fw.1: fw.1.in make-manpage
47 $(make_manpage) man >$@.new && mv $@.new $@
48
49## The grammar summary.
50MAINTAINERCLEANFILES += $(srcdir)/GRAMMAR
51EXTRA_DIST += GRAMMAR
52
53$(srcdir)/GRAMMAR: fw.1.in make-manpage
54 $(make_manpage) text >$@.new && mv $@.new $@
55
56###--------------------------------------------------------------------------
57### The main port forwarder.
58
59bin_PROGRAMS += fw
60fw_SOURCES =
61fw_LDADD = $(mLib_LIBS)
62
63## Main program.
64fw_SOURCES += fw.c fw.h
65
66fw_SOURCES += chan.c
67fw_SOURCES += endpt.c
68fw_SOURCES += source.c
69
70fw_SOURCES += conf.c
71fw_SOURCES += scan.c
72fw_SOURCES += fattr.c
73
74fw_SOURCES += reffd.c
75
76## Sockets.
77fw_SOURCES += socket.c
78
79fw_SOURCES += un.c
80
81fw_SOURCES += inet.c
82fw_SOURCES += acl.c
83fw_SOURCES += identify.c
84fw_SOURCES += privconn.c
85
86## Files.
87fw_SOURCES += file.c
88
89## Executables.
90fw_SOURCES += exec.c
91fw_SOURCES += rlimits.h
92
93## Documentation.
94fw_SOURCES += mantext.c
95CLEANFILES += mantext.c
96BUILT_SOURCES += mantext.c
97
98mantext.c: fw.1.in make-manpage
99 $(make_manpage) c >$@.new && mv $@.new $@
100
101###--------------------------------------------------------------------------
102### Other infrastructure.
103
104## Set the release number.
105dist-hook:
106 echo "$(VERSION)" >$(distdir)/RELEASE
107
108###--------------------------------------------------------------------------
109### Debian.
110
111EXTRA_DIST += debian/rules
112EXTRA_DIST += debian/changelog
113EXTRA_DIST += debian/control
114EXTRA_DIST += debian/copyright
115
116###----- That's all, folks --------------------------------------------------