1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
|
#
# Copyright <=2001 by the cuyo developers
# Maintenance modifications 2001-2004,2006-2008,2011,2012 by the cuyo developers
#
# 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
#
# Die Daten sollen jetzt nicht mehr nach /usr/share/cuyo, sondern
# nach /usr/share/games/cuyo
# Erst mal noch auskommentiert, weil man das in jede einzelne Makefile.am
# schreiben msste, was irgendwie doof ist.
# pkgdatadir = $(datadir)/games/@PACKAGE@
SUBDIRS = src data docs icons po
# Damit die GNU-Dateien nicht notwendig sind:
# AUTOMAKE_OPTIONS = foreign
EXTRA_DIST = autogen.sh sdl.m4
# aclocal soll mit -I . aufgerufen werden. Auch, wenn es automatisch von
# make aufgerufen wird. Automake macht das aber ohne "-I ."; deshalb manuell
# setzen. (Dadurch, dass hier ACLOCAL gesetzt wird, lsst automake die sonst
# automatisch generierte Zeile "ACLOCAL = @ACLOCAL@" weg.
ACLOCAL_AMFLAGS = -I .
CLEANFILES = config.h.in~
DISTCLEANFILES = stamp-h stamp-h1
MAINTAINERCLEANFILES = Makefile.in configure install-sh stamp-h.in aclocal.m4 config.h.in mkinstalldirs config.guess config.sub missing depcomp ylwrap
dist-hook:
mkdir $(distdir)/datasrc
($(DATASRC_MAINTAINER_MODE) && $(MAKE) -C datasrc distfiles) || true
for file in `cat datasrc/distfiles`; do cp datasrc/$$file $(distdir)/datasrc/; done
mkdir $(distdir)/datasrc/pics
($(DATASRC_MAINTAINER_MODE) && $(MAKE) -C datasrc/pics distfiles) || true
for file in `cat datasrc/pics/distfiles`; do cp datasrc/pics/$$file $(distdir)/datasrc/pics/; done
|