# DLIFE (C) 2000 Richard W.M. Jones # and other authors listed in the ``AUTHORS'' file. # # This program 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. # # This program 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 this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # # $Id: Makefile.am,v 1.3 2002/04/05 17:20:11 rich Exp $ AUTOMAKE_OPTIONS = foreign EXTRA_DIST = .cvsignore \ Build \ Build.local \ dlife_asm.pl \ dlife_client.pl.in \ dlife_disasm.pl \ dlife_server.pl.in \ dlife.spec \ dlife.spec.in \ god.dla \ index.html.in \ servers.txt \ debian/changelog \ debian/conffiles \ debian/control \ debian/copyright \ debian/cron.d \ debian/dirs \ debian/docs \ debian/files \ debian/init.d \ debian/postinst.debhelper \ debian/postrm.debhelper \ debian/prerm.debhelper \ debian/rules \ debian/substvars \ $(bin_SCRIPTS) \ $(conf_DATA) \ $(cron_DATA) \ $(doc_DATA) \ $(rc_SCRIPTS) \ $(spool_DATA) docdir = @DOCDIR@ doc_DATA = AUTHORS \ INSTALL \ README \ archproc.gif \ archproc.fig \ archref.html \ index.html \ machineref.html spooldir = @SPOOLDIR@ spool_DATA = god.dlo confdir = @CONFDIR@ conf_DATA = client.conf soup.conf if INSTALL_CRON crondir = @CRONDIR@ else crondir = /tmp endif cron_DATA = dlife_client.cron if INSTALL_RC rcdir = @RCDIR@ else rcdir = /tmp endif rc_SCRIPTS = dlife.rc bin_PROGRAMS = dlife_soup bin_SCRIPTS = dlife_client.pl dlife_server.pl dlife_soup_SOURCES = \ cell.c \ cell.h \ crc.c \ crc.h \ dlink.h \ exec.c \ image.c \ image.h \ load.c \ load.h \ main.c \ params.h \ random.c \ random.h \ soup.c \ soup.h \ state.c \ state.h \ types.h install-data-hook: $(mkinstalldirs) $(DESTDIR)$(spooldir)/incoming $(mkinstalldirs) $(DESTDIR)$(spooldir)/outgoing $(mkinstalldirs) $(DESTDIR)$(spooldir)/saved $(mkinstalldirs) $(DESTDIR)$(spooldir)/store ifndef NO_CHOWN chown -R dlife.dlife $(DESTDIR)$(spooldir) endif