## -*-makefile-*- ## ## $Id: Makefile.am,v 1.5 1999/11/11 19:08:27 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.5 1999/11/11 19:08:27 mdw ## Build separately from mLib. ## ## Revision 1.4 1999/10/10 16:47:16 mdw ## Moved some files to mLib. ## ## 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 bin_PROGRAMS = fw man_MANS = fw.1 EXTRA_DIST = $(man_MANS) 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 \ \ source.c source.h target.h \ exec.c file.c socket.c \ exec.h file.h socket.h \ \ addr.h \ inet.c un.c \ inet.h un.h \ \ acl.c fattr.c identify.c \ acl.h fattr.h identify.h rlimits.h ##----- That's all, folks ---------------------------------------------------