manpage: Fix email address.
[fwd] / Makefile.am
CommitLineData
e82f7154 1## -*-makefile-*-
2##
7481fc9c 3## $Id: Makefile.am,v 1.8 2004/04/08 01:36:25 mdw Exp $
e82f7154 4##
5## Makefile for fw
6##
7## (c) 1999 Mark Wooding
8##
9
10##----- Licensing notice ----------------------------------------------------
11##
12## This file is part of the `fw' port forwarder.
13##
14## `fw' is free software; you can redistribute it and/or modify
15## it under the terms of the GNU General Public License as published by
16## the Free Software Foundation; either version 2 of the License, or
17## (at your option) any later version.
18##
19## `fw' is distributed in the hope that it will be useful,
20## but WITHOUT ANY WARRANTY; without even the implied warranty of
21## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22## GNU General Public License for more details.
23##
24## You should have received a copy of the GNU General Public License
25## along with `fw'; if not, write to the Free Software Foundation,
26## Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
27
e82f7154 28AUTOMAKE_OPTIONS = foreign
29
e82f7154 30bin_PROGRAMS = fw
07f663a6 31man_MANS = fw.1
e82f7154 32
0ac54f22 33EXTRA_DIST = \
34 $(man_MANS) \
35 debian/changelog debian/copyright debian/control debian/rules
07f663a6 36
e82f7154 37fw_SOURCES = \
4832f8be 38 chan.c conf.c endpt.c fw.c reffd.c scan.c \
39 chan.h conf.h endpt.h fw.h reffd.h scan.h \
40 \
41 source.c source.h target.h \
42 exec.c file.c socket.c \
43 exec.h file.h socket.h \
44 \
45 addr.h \
46 inet.c un.c \
47 inet.h un.h \
48 \
ee599f55 49 acl.c fattr.c identify.c privconn.c \
50 acl.h fattr.h identify.h privconn.h rlimits.h
e82f7154 51
52##----- That's all, folks ---------------------------------------------------