X-Git-Url: https://git.distorted.org.uk/~mdw/fwd/blobdiff_plain/e82f7154f65062d9ac8b9677862774498b331058..a9bd543ab4ebe415bca9d6f27b90f16ddac79bc0:/Makefile.am diff --git a/Makefile.am b/Makefile.am index b41ffe7..3c5ca14 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,49 +1,129 @@ -## -*-makefile-*- -## -## $Id: Makefile.am,v 1.1 1999/07/01 08:56:23 mdw Exp $ -## -## Makefile for fw -## -## (c) 1999 Mark Wooding -## - -##----- Licensing notice ---------------------------------------------------- -## -## This file is part of the `fw' port forwarder. -## -## `fw' is free software; you can redistribute it and/or modify -## it under the terms of the GNU General Public License as published by -## the Free Software Foundation; either version 2 of the License, or -## (at your option) any later version. -## -## `fw' is distributed in the hope that it will be useful, -## but WITHOUT ANY WARRANTY; without even the implied warranty of -## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -## GNU General Public License for more details. -## -## You should have received a copy of the GNU General Public License -## along with `fw'; if not, write to the Free Software Foundation, -## Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. - -##----- Revision history ---------------------------------------------------- -## -## $Log: Makefile.am,v $ -## Revision 1.1 1999/07/01 08:56:23 mdw -## Initial revision -## - -AUTOMAKE_OPTIONS = foreign - -SUBDIRS = mLib - -bin_PROGRAMS = fw -LDADD = mLib/libmLib.a -INCLUDES = -I$(srcdir)/mLib - -fw_SOURCES = \ - acl.c bres.c chan.c conf.c forward.c fw.c \ - ident.c identify.c listener.c scan.c \ - acl.h bres.h chan.h conf.h forward.h fw.h \ - ident.h identify.h listener.h scan.h - -##----- That's all, folks --------------------------------------------------- +### -*-makefile-*- +### +### Makefile for fw +### +### (c) 1999 Mark Wooding +### + +###----- Licensing notice --------------------------------------------------- +### +### This file is part of the `fw' port forwarder. +### +### `fw' is free software; you can redistribute it and/or modify +### it under the terms of the GNU General Public License as published by +### the Free Software Foundation; either version 2 of the License, or +### (at your option) any later version. +### +### `fw' is distributed in the hope that it will be useful, +### but WITHOUT ANY WARRANTY; without even the implied warranty of +### MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +### GNU General Public License for more details. +### +### You should have received a copy of the GNU General Public License +### along with `fw'; if not, write to the Free Software Foundation, +### Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. + +bin_PROGRAMS = +noinst_PROGRAMS = +man_MANS = + +EXTRA_DIST = +BUILT_SOURCES = +CLEANFILES = +MAINTAINERCLEANFILES = + +AM_CFLAGS = $(mLib_CFLAGS) + +###-------------------------------------------------------------------------- +### Documentation. + +make_manpage = perl $(srcdir)/make-manpage <$(srcdir)/fw.1.in +EXTRA_DIST += fw.1.in make-manpage + +## The manual page. +man_MANS += fw.1 +CLEANFILES += fw.1 + +fw.1: fw.1.in make-manpage + $(make_manpage) man >$@.new && mv $@.new $@ + +## The grammar summary. +MAINTAINERCLEANFILES += $(srcdir)/GRAMMAR +EXTRA_DIST += GRAMMAR + +$(srcdir)/GRAMMAR: fw.1.in make-manpage + $(make_manpage) text >$@.new && mv $@.new $@ + +###-------------------------------------------------------------------------- +### The main port forwarder. + +bin_PROGRAMS += fw +fw_SOURCES = +fw_LDADD = $(mLib_LIBS) + +## Main program. +fw_SOURCES += fw.c fw.h + +fw_SOURCES += chan.c +fw_SOURCES += endpt.c +fw_SOURCES += source.c + +fw_SOURCES += conf.c +fw_SOURCES += scan.c +fw_SOURCES += fattr.c + +fw_SOURCES += reffd.c + +## Sockets. +fw_SOURCES += socket.c + +fw_SOURCES += un.c + +fw_SOURCES += inet.c +fw_SOURCES += acl.c +fw_SOURCES += identify.c +fw_SOURCES += privconn.c + +## Files. +fw_SOURCES += file.c + +## Executables. +fw_SOURCES += exec.c +fw_SOURCES += rlimits.h + +## Documentation. +fw_SOURCES += mantext.c +CLEANFILES += mantext.c +BUILT_SOURCES += mantext.c + +mantext.c: fw.1.in make-manpage + $(make_manpage) c >$@.new && mv $@.new $@ + +###-------------------------------------------------------------------------- +### The blast tool. + +noinst_PROGRAMS += blast +blast_SOURCES = blast.c +blast_LDADD = $(mLib_LIBS) + +###-------------------------------------------------------------------------- +### Other infrastructure. + +## Set the release number. +dist-hook: + echo "$(VERSION)" >$(distdir)/RELEASE + +###-------------------------------------------------------------------------- +### Debian. + +## Main Debian files. +EXTRA_DIST += debian/rules +EXTRA_DIST += debian/changelog +EXTRA_DIST += debian/control +EXTRA_DIST += debian/copyright + +## Run the daemon automatically. +EXTRA_DIST += debian/fw.init +EXTRA_DIST += debian/fw.postinst + +###----- That's all, folks --------------------------------------------------