blast: Upper-case metasyntactic variables in the usage message.
[fwd] / Makefile.am
1 ## -*-makefile-*-
2 ##
3 ## $Id: Makefile.am,v 1.8 2004/04/08 01:36:25 mdw Exp $
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
28 AUTOMAKE_OPTIONS = foreign
29
30 bin_PROGRAMS = fw
31 man_MANS = fw.1
32
33 EXTRA_DIST = \
34 $(man_MANS) \
35 debian/changelog debian/copyright debian/control debian/rules
36
37 fw_SOURCES = \
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 \
49 acl.c fattr.c identify.c privconn.c \
50 acl.h fattr.h identify.h privconn.h rlimits.h
51
52 ##----- That's all, folks ---------------------------------------------------