X-Git-Url: https://git.distorted.org.uk/~mdw/fwd/blobdiff_plain/4832f8be53262bea70dcd292e9d901adc94d8f46..8938f77b2c12ccea6731a1eba7d788b2ba22348f:/Makefile.am diff --git a/Makefile.am b/Makefile.am index a6daaa0..2df8226 100644 --- a/Makefile.am +++ b/Makefile.am @@ -1,6 +1,6 @@ ## -*-makefile-*- ## -## $Id: Makefile.am,v 1.3 1999/07/26 23:30:06 mdw Exp $ +## $Id: Makefile.am,v 1.8 2004/04/08 01:36:25 mdw Exp $ ## ## Makefile for fw ## @@ -25,33 +25,33 @@ ## 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.3 1999/07/26 23:30:06 mdw -## Lots of changes to source files for new design. -## -## Revision 1.2 1999/07/03 13:53:27 mdw -## Install and distribute new manual page. -## -## Revision 1.1.1.1 1999/07/01 08:56:23 mdw -## Initial revision. -## - AUTOMAKE_OPTIONS = foreign -SUBDIRS = mLib - bin_PROGRAMS = fw man_MANS = fw.1 -LDADD = mLib/libmLib.a -INCLUDES = -I$(srcdir)/mLib -EXTRA_DIST = $(man_MANS) +EXTRA_DIST = \ + fw.1.in GRAMMAR \ + make-manpage \ + debian/changelog debian/copyright debian/control debian/rules + +BUILT_SOURCES = mantext.c + +$(srcdir)/GRAMMAR: fw.1.in make-manpage + perl $(srcdir)/make-manpage text <$(srcdir)/fw.1.in >$@.new + mv $@.new $@ + +fw.1: fw.1.in make-manpage + perl $(srcdir)/make-manpage man <$(srcdir)/fw.1.in >$@.new + mv $@.new $@ + +mantext.c: fw.1.in make-manpage + perl $(srcdir)/make-manpage c <$(srcdir)/fw.1.in >$@.new + mv $@.new $@ fw_SOURCES = \ - chan.c conf.c endpt.c fw.c reffd.c scan.c \ - chan.h conf.h endpt.h fw.h reffd.h scan.h \ + chan.c conf.c endpt.c fw.c mantext.c reffd.c scan.c \ + chan.h conf.h endpt.h fw.h mantext.h reffd.h scan.h \ \ source.c source.h target.h \ exec.c file.c socket.c \ @@ -61,7 +61,10 @@ fw_SOURCES = \ inet.c un.c \ inet.h un.h \ \ - acl.c bres.c fattr.c ident.c identify.c \ - acl.h bres.h fattr.h ident.h identify.h rlimits.h + acl.c fattr.c identify.c privconn.c \ + acl.h fattr.h identify.h privconn.h rlimits.h + +CLEANFILES = $(BUILT_SOURCES) fw.1 +MAINTAINERCLEANFILES = $(srcdir)/GRAMMAR ##----- That's all, folks ---------------------------------------------------