pingus-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH] Build problems with autoconf-2.54 / automake-1.7


From: Nix
Subject: [PATCH] Build problems with autoconf-2.54 / automake-1.7
Date: 26 Oct 2002 16:24:05 +0100
User-agent: Gnus/5.0808 (Gnus v5.8.8) XEmacs/21.4 (Informed Management)

There is an apparent bug in autoconf which breaks --trace with a bizarre
error message if a single AC_OUTPUT / AC_CONFIG_FILES list is too long,
breaking automake-1.7. The solution is to split the AC_CONFIG_FILES call
into multiple such.

There's another apparent bug in data/generate_makefile.pl such that the
requirements for Makefile.am autogeneration are never satisfied and the
rule loops, generating makefiles forever.

The patch I've whipped up for the latter problem is hardly ideal: it
breaks if a file is deleted (but then it always did); and it still
rebuilds the makefile far too much. But it's better than it was.


The patches are separate because I'm sure the first is right, but I may
misunderstand the purpose of generate_makefile.pl, and because the
generate_makefile.pl fix yields makefiles that require GNU Make, which
might not be acceptable.

Against CVS as of 2002-10-26 10:56 GMT.

First, the configure / autoconf-2.54 bugfix:

2002-10-26  Nix  <address@hidden>

        * configure.in (AC_OUTPUT): Move to...
        (AC_CONFIG_FILES): ... this. Split in two.

Index: Games/Pingus/configure.in
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/configure.in,v
retrieving revision 1.74
diff -u -r1.74 configure.in
--- Games/Pingus/configure.in   12 Oct 2002 23:43:19 -0000      1.74
+++ Games/Pingus/configure.in   26 Oct 2002 15:11:18 -0000
@@ -332,7 +332,7 @@
 # po/Makefile.in intl/Makefile <- this must be in one line, if its not
 # po/Makefile will not be generated.
 
-AC_OUTPUT( Makefile 
+AC_CONFIG_FILES( Makefile 
            src/Makefile 
            src/actions/Makefile
            src/caimagemanipulation/Makefile
@@ -407,8 +407,9 @@
   data/images/groundpieces/transparent/misc/Makefile
   data/images/groundpieces/transparent/foliage/Makefile
   data/images/groundpieces/transparent/Makefile
-  data/images/groundpieces/transparent/industrial/Makefile
-  data/images/liquids/Makefile
+  data/images/groundpieces/transparent/industrial/Makefile)
+
+AC_CONFIG_FILES(data/images/liquids/Makefile
   data/images/worldmaps/Makefile
   data/images/worldobjs/Makefile
   data/images/special/Makefile
@@ -421,9 +422,9 @@
   data/images/hotspots/Makefile
   data/images/hotspots/signposts/Makefile
   data/images/pingus/Makefile
-  data/images/entrances/Makefile
-          )
-# find . -name "Makefile.am" | grep "\./data/images" | grep -v old | grep -v 
unsorted | sed "s/^\.\//  /" | sed "s/.am\$//"
+  data/images/entrances/Makefile)
+AC_OUTPUT
+dnl find . -name "Makefile.am" | grep "\./data/images" | grep -v old | grep -v 
unsorted | sed "s/^\.\//  /" | sed "s/.am\$//"
 
 
 # ----------------------------------------


Then the new makefile generator:

2002-10-26  Nix  <address@hidden>

        * data/images/generate_makefile.pl (generate_makefile):
        Use new variable `current_file_list' in generated makefiles
        to recreate only if a file changes.

Index: Games/Pingus/data/images/generate_makefile.pl
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/data/images/generate_makefile.pl,v
retrieving revision 1.4
diff -u -r1.4 generate_makefile.pl
--- Games/Pingus/data/images/generate_makefile.pl       1 Jun 2002 19:44:07 
-0000       1.4
+++ Games/Pingus/data/images/generate_makefile.pl       26 Oct 2002 15:11:19 
-0000
@@ -157,7 +157,8 @@
        }
 
        if ($autogenerate) {
-               print MKFL "Makefile.am: . \$(SUBDIRS)\n" if ! $test;
+               print MKFL 'current_file_list = $(wildcard $(srcdir)/*.png 
$(srcdir)/*.jpg)' . "\n" if ! $test;
+               print MKFL "Makefile.am: \$(current_file_list) \$(SUBDIRS)\n" 
if ! $test;
                print MKFL "\tperl 
\$(top_srcdir)/data/images/generate_makefile.pl -a ." if ! $test;
        }
        print "\n" if ! $test;

And now a mass of regenerated makefiles, which don't merit a changelog entry:

Index: Games/Pingus/data/images/backgrounds/Makefile.am
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/data/images/backgrounds/Makefile.am,v
retrieving revision 1.3
diff -u -r1.3 Makefile.am
--- Games/Pingus/data/images/backgrounds/Makefile.am    1 Jun 2002 12:08:26 
-0000       1.3
+++ Games/Pingus/data/images/backgrounds/Makefile.am    26 Oct 2002 15:11:19 
-0000
@@ -3,6 +3,7 @@
 pkgdatadir = $(datadir)/games/@PACKAGE@/images/backgrounds
 EXTRA_DIST = large_star.png middle_star.png small_star.png starfield_icon.png 
 pkgdata_DATA = $(EXTRA_DIST)
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/core/Makefile.am
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/data/images/core/Makefile.am,v
retrieving revision 1.4
diff -u -r1.4 Makefile.am
--- Games/Pingus/data/images/core/Makefile.am   1 Jun 2002 19:44:07 -0000       
1.4
+++ Games/Pingus/data/images/core/Makefile.am   26 Oct 2002 15:11:19 -0000
@@ -1,6 +1,7 @@
 # autogenerated file, don't touch!
 
 SUBDIRS = buttons cursors editor menu misc worldmap 
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/core/buttons/Makefile.am
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/data/images/core/buttons/Makefile.am,v
retrieving revision 1.4
diff -u -r1.4 Makefile.am
--- Games/Pingus/data/images/core/buttons/Makefile.am   18 Jun 2002 21:17:16 
-0000      1.4
+++ Games/Pingus/data/images/core/buttons/Makefile.am   26 Oct 2002 15:11:19 
-0000
@@ -3,6 +3,7 @@
 pkgdatadir = $(datadir)/games/@PACKAGE@/images/core/buttons
 EXTRA_DIST = armageddon_anim.png back.png back2.png buttonbackground.png 
buttonbackgroundhl.png fast_forward.png hbuttonbg.png hbuttonbgb.png info.png 
pause.png 
 pkgdata_DATA = $(EXTRA_DIST)
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/core/cursors/Makefile.am
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/data/images/core/cursors/Makefile.am,v
retrieving revision 1.3
diff -u -r1.3 Makefile.am
--- Games/Pingus/data/images/core/cursors/Makefile.am   1 Jun 2002 12:08:28 
-0000       1.3
+++ Games/Pingus/data/images/core/cursors/Makefile.am   26 Oct 2002 15:11:19 
-0000
@@ -3,6 +3,7 @@
 pkgdatadir = $(datadir)/games/@PACKAGE@/images/core/cursors
 EXTRA_DIST = animcross.png arrow_left.png arrow_right.png cap.png capture.png 
capwrong.png cross.png cursor.png editor.png scroll.png 
 pkgdata_DATA = $(EXTRA_DIST)
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/core/editor/Makefile.am
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/data/images/core/editor/Makefile.am,v
retrieving revision 1.4
diff -u -r1.4 Makefile.am
--- Games/Pingus/data/images/core/editor/Makefile.am    29 Jun 2002 16:06:28 
-0000      1.4
+++ Games/Pingus/data/images/core/editor/Makefile.am    26 Oct 2002 15:11:19 
-0000
@@ -3,6 +3,7 @@
 pkgdatadir = $(datadir)/games/@PACKAGE@/images/core/editor
 EXTRA_DIST = actions.png button.png button_pressed.png home.png logo.png 
region-zoom.png start_pos.png tb_clock_run.png tb_copy.png tb_edit.png 
tb_exit.png tb_help.png tb_index.png tb_new.png tb_open.png tb_preferences.png 
tb_save.png tb_trash.png weather_rain.png weather_snow.png zoom-in.png 
zoom-out.png 
 pkgdata_DATA = $(EXTRA_DIST)
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/core/menu/Makefile.am
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/data/images/core/menu/Makefile.am,v
retrieving revision 1.3
diff -u -r1.3 Makefile.am
--- Games/Pingus/data/images/core/menu/Makefile.am      1 Jun 2002 12:08:28 
-0000       1.3
+++ Games/Pingus/data/images/core/menu/Makefile.am      26 Oct 2002 15:11:20 
-0000
@@ -3,6 +3,7 @@
 pkgdatadir = $(datadir)/games/@PACKAGE@/images/core/menu
 EXTRA_DIST = create_on.png credits_on.png exit_on.png exitmenu.png ice_off.png 
layer1.jpg layer1.png layer2.png layer3.png layer4.png layer5.png multi_on.png 
options_on.png play_on.png 
 pkgdata_DATA = $(EXTRA_DIST)
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/core/misc/Makefile.am
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/data/images/core/misc/Makefile.am,v
retrieving revision 1.5
diff -u -r1.5 Makefile.am
--- Games/Pingus/data/images/core/misc/Makefile.am      24 Sep 2002 14:51:35 
-0000      1.5
+++ Games/Pingus/data/images/core/misc/Makefile.am      26 Oct 2002 15:11:20 
-0000
@@ -1,8 +1,9 @@
 # autogenerated file, don't touch!
 
 pkgdatadir = $(datadir)/games/@PACKAGE@/images/core/misc
-EXTRA_DIST = 404.png flag0.png flag1.png flag2.png flag3.png loading.png 
logo.png pingubw.png smallmap_entrance.png smallmap_exit.png unplayable.png 
unplayable2.png 
+EXTRA_DIST = 404.png flag0.png flag1.png flag2.png flag3.png infinity.png 
loading.png logo.png pingubw.png smallmap_entrance.png smallmap_exit.png 
unplayable.png unplayable2.png 
 pkgdata_DATA = $(EXTRA_DIST)
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/core/worldmap/Makefile.am
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/data/images/core/worldmap/Makefile.am,v
retrieving revision 1.4
diff -u -r1.4 Makefile.am
--- Games/Pingus/data/images/core/worldmap/Makefile.am  18 Jun 2002 21:17:16 
-0000      1.4
+++ Games/Pingus/data/images/core/worldmap/Makefile.am  26 Oct 2002 15:11:20 
-0000
@@ -3,6 +3,7 @@
 pkgdatadir = $(datadir)/games/@PACKAGE@/images/core/worldmap
 EXTRA_DIST = dot_border.png dot_green.png dot_invalid.png dot_red.png 
flaggreen.png tube.png 
 pkgdata_DATA = $(EXTRA_DIST)
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/entrances/Makefile.am
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/data/images/entrances/Makefile.am,v
retrieving revision 1.3
diff -u -r1.3 Makefile.am
--- Games/Pingus/data/images/entrances/Makefile.am      1 Jun 2002 12:08:29 
-0000       1.3
+++ Games/Pingus/data/images/entrances/Makefile.am      26 Oct 2002 15:11:20 
-0000
@@ -3,6 +3,7 @@
 pkgdatadir = $(datadir)/games/@PACKAGE@/images/entrances
 EXTRA_DIST = cloudent.png entrance.png eyes_entrance.png 
eyes_entrance_anim.png eyes_underlay.png generic.png industrial.png 
industrial_top.png space.png wood_bottom.png wood_top.png woodthing_mov.png 
woodthing_nmov.png 
 pkgdata_DATA = $(EXTRA_DIST)
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/exits/Makefile.am
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/data/images/exits/Makefile.am,v
retrieving revision 1.5
diff -u -r1.5 Makefile.am
--- Games/Pingus/data/images/exits/Makefile.am  1 Jun 2002 12:08:29 -0000       
1.5
+++ Games/Pingus/data/images/exits/Makefile.am  26 Oct 2002 15:11:20 -0000
@@ -3,6 +3,7 @@
 pkgdatadir = $(datadir)/games/@PACKAGE@/images/exits
 EXTRA_DIST = crystal.png desert_tut.png desertexit.png ice.png ice2.png 
industrial.png mud.png ordina.png sortie.png sortie_anim.png space.png 
stone.png sweetexit.png 
 pkgdata_DATA = $(EXTRA_DIST)
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/fonts/Makefile.am
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/data/images/fonts/Makefile.am,v
retrieving revision 1.4
diff -u -r1.4 Makefile.am
--- Games/Pingus/data/images/fonts/Makefile.am  1 Jun 2002 12:08:29 -0000       
1.4
+++ Games/Pingus/data/images/fonts/Makefile.am  26 Oct 2002 15:11:20 -0000
@@ -3,6 +3,7 @@
 pkgdatadir = $(datadir)/games/@PACKAGE@/images/fonts
 EXTRA_DIST = clanfont.png courier.png courier_h.png courier_small2.png 
down_arrow.png font.png left_arrow.png number_fnt.png pingus2.png pingus4.png 
pingus_small3.png pingus_small4.png right_arrow.png smallfont.png 
smallfont_h.png up_arrow.png xterm.png 
 pkgdata_DATA = $(EXTRA_DIST)
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/groundpieces/Makefile.am
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/data/images/groundpieces/Makefile.am,v
retrieving revision 1.4
diff -u -r1.4 Makefile.am
--- Games/Pingus/data/images/groundpieces/Makefile.am   1 Jun 2002 19:44:07 
-0000       1.4
+++ Games/Pingus/data/images/groundpieces/Makefile.am   26 Oct 2002 15:11:20 
-0000
@@ -1,6 +1,7 @@
 # autogenerated file, don't touch!
 
 SUBDIRS = bridge ground remove solid transparent 
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/groundpieces/bridge/Makefile.am
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/data/images/groundpieces/bridge/Makefile.am,v
retrieving revision 1.3
diff -u -r1.3 Makefile.am
--- Games/Pingus/data/images/groundpieces/bridge/Makefile.am    1 Jun 2002 
19:44:07 -0000       1.3
+++ Games/Pingus/data/images/groundpieces/bridge/Makefile.am    26 Oct 2002 
15:11:20 -0000
@@ -1,6 +1,7 @@
 # autogenerated file, don't touch!
 
 SUBDIRS = misc space 
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/groundpieces/bridge/misc/Makefile.am
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/data/images/groundpieces/bridge/misc/Makefile.am,v
retrieving revision 1.2
diff -u -r1.2 Makefile.am
--- Games/Pingus/data/images/groundpieces/bridge/misc/Makefile.am       20 Jan 
2002 13:01:33 -0000      1.2
+++ Games/Pingus/data/images/groundpieces/bridge/misc/Makefile.am       26 Oct 
2002 15:11:20 -0000
@@ -3,6 +3,7 @@
 pkgdatadir = $(datadir)/games/@PACKAGE@/images/groundpieces/bridge/misc
 EXTRA_DIST = bridge_left.png bridge_right.png 
 pkgdata_DATA = $(EXTRA_DIST)
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/groundpieces/bridge/space/Makefile.am
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/data/images/groundpieces/bridge/space/Makefile.am,v
retrieving revision 1.2
diff -u -r1.2 Makefile.am
--- Games/Pingus/data/images/groundpieces/bridge/space/Makefile.am      20 Jan 
2002 13:01:33 -0000      1.2
+++ Games/Pingus/data/images/groundpieces/bridge/space/Makefile.am      26 Oct 
2002 15:11:20 -0000
@@ -3,6 +3,7 @@
 pkgdatadir = $(datadir)/games/@PACKAGE@/images/groundpieces/bridge/space
 EXTRA_DIST = grid1.png grid2.png grid3.png 
 pkgdata_DATA = $(EXTRA_DIST)
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/groundpieces/ground/Makefile.am
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/data/images/groundpieces/ground/Makefile.am,v
retrieving revision 1.9
diff -u -r1.9 Makefile.am
--- Games/Pingus/data/images/groundpieces/ground/Makefile.am    9 Oct 2002 
19:13:01 -0000       1.9
+++ Games/Pingus/data/images/groundpieces/ground/Makefile.am    26 Oct 2002 
15:11:20 -0000
@@ -1,6 +1,7 @@
 # autogenerated file, don't touch!
 
 SUBDIRS = crystal desert foliage green industrial jungle misc mud mushroom 
ordina real rock signposts snow sortie space sweets test 
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/groundpieces/ground/crystal/Makefile.am
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/data/images/groundpieces/ground/crystal/Makefile.am,v
retrieving revision 1.3
diff -u -r1.3 Makefile.am
--- Games/Pingus/data/images/groundpieces/ground/crystal/Makefile.am    1 Jun 
2002 12:08:30 -0000       1.3
+++ Games/Pingus/data/images/groundpieces/ground/crystal/Makefile.am    26 Oct 
2002 15:11:20 -0000
@@ -3,6 +3,7 @@
 pkgdatadir = $(datadir)/games/@PACKAGE@/images/groundpieces/ground/crystal
 EXTRA_DIST = block.png column.png diagcrystal.png hexcrystal.png horiz.png 
horiz2.png pipe.png pipeend.png platform.png platform2.png pointleft.png 
pointright.png skinnycrystal.png smcrystal.png tesselate.png 
 pkgdata_DATA = $(EXTRA_DIST)
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/groundpieces/ground/desert/Makefile.am
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/data/images/groundpieces/ground/desert/Makefile.am,v
retrieving revision 1.5
diff -u -r1.5 Makefile.am
--- Games/Pingus/data/images/groundpieces/ground/desert/Makefile.am     29 Jun 
2002 09:44:56 -0000      1.5
+++ Games/Pingus/data/images/groundpieces/ground/desert/Makefile.am     26 Oct 
2002 15:11:20 -0000
@@ -3,6 +3,7 @@
 pkgdatadir = $(datadir)/games/@PACKAGE@/images/groundpieces/ground/desert
 EXTRA_DIST = bigblock-broken1.png bigblock-broken2.png bigblock-broken3.png 
bigdune1.png bigprickpiece.png bigsand.png blobdune.png column.png 
column_piece1.png column_piece2.png column_piece3.png domedune.png flat.png 
flatdune.png leftsmallbrick.png leftsmallsand.png mediumsand.png 
middleprickpiece.png peakdune.png pillar1.png pillar2.png pillar3.png 
platform.png platform_left.png platform_right.png rightsmallbrick.png 
rightsmallsand.png sluggydu.png smallbrickpiece.png smallsand.png 
 pkgdata_DATA = $(EXTRA_DIST)
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/groundpieces/ground/foliage/Makefile.am
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/data/images/groundpieces/ground/foliage/Makefile.am,v
retrieving revision 1.3
diff -u -r1.3 Makefile.am
--- Games/Pingus/data/images/groundpieces/ground/foliage/Makefile.am    1 Jun 
2002 12:08:30 -0000       1.3
+++ Games/Pingus/data/images/groundpieces/ground/foliage/Makefile.am    26 Oct 
2002 15:11:20 -0000
@@ -3,6 +3,7 @@
 pkgdatadir = $(datadir)/games/@PACKAGE@/images/groundpieces/ground/foliage
 EXTRA_DIST = flax1.png flax2.png midtree1.png midtree2.png oak1.png 
smallbush.png smallbush2.png smallbush3.png talltree.png 
 pkgdata_DATA = $(EXTRA_DIST)
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/groundpieces/ground/green/Makefile.am
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/data/images/groundpieces/ground/green/Makefile.am,v
retrieving revision 1.1
diff -u -r1.1 Makefile.am
--- Games/Pingus/data/images/groundpieces/ground/green/Makefile.am      15 Oct 
2002 19:17:54 -0000      1.1
+++ Games/Pingus/data/images/groundpieces/ground/green/Makefile.am      26 Oct 
2002 15:11:20 -0000
@@ -3,6 +3,7 @@
 pkgdatadir = $(datadir)/games/@PACKAGE@/images/groundpieces/ground/green
 EXTRA_DIST = piece1.png piece2.png piece3.png 
 pkgdata_DATA = $(EXTRA_DIST)
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/groundpieces/ground/industrial/Makefile.am
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/data/images/groundpieces/ground/industrial/Makefile.am,v
retrieving revision 1.2
diff -u -r1.2 Makefile.am
--- Games/Pingus/data/images/groundpieces/ground/industrial/Makefile.am 20 Jan 
2002 13:01:34 -0000      1.2
+++ Games/Pingus/data/images/groundpieces/ground/industrial/Makefile.am 26 Oct 
2002 15:11:20 -0000
@@ -3,6 +3,7 @@
 pkgdatadir = $(datadir)/games/@PACKAGE@/images/groundpieces/ground/industrial
 EXTRA_DIST = pipe1.png pipe2.png pipe3.png pipe4.png pipe5.png pipe6.png 
pipe7.png pipe8.png pipe_bl.png pipe_br.png pipe_ul.png pipe_ur.png 
 pkgdata_DATA = $(EXTRA_DIST)
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/groundpieces/ground/jungle/Makefile.am
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/data/images/groundpieces/ground/jungle/Makefile.am,v
retrieving revision 1.3
diff -u -r1.3 Makefile.am
--- Games/Pingus/data/images/groundpieces/ground/jungle/Makefile.am     1 Jun 
2002 12:08:30 -0000       1.3
+++ Games/Pingus/data/images/groundpieces/ground/jungle/Makefile.am     26 Oct 
2002 15:11:20 -0000
@@ -3,6 +3,7 @@
 pkgdatadir = $(datadir)/games/@PACKAGE@/images/groundpieces/ground/jungle
 EXTRA_DIST = branch1.png branch2.png branch3.png branch4.png branch5.png 
branch6.png carabatree.png carabatreemedium.png carabatreesmall.png stick1.png 
stick2.png stick3.png stick4.png stick5.png twist.png twistsmooth.png 
 pkgdata_DATA = $(EXTRA_DIST)
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/groundpieces/ground/misc/Makefile.am
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/data/images/groundpieces/ground/misc/Makefile.am,v
retrieving revision 1.10
diff -u -r1.10 Makefile.am
--- Games/Pingus/data/images/groundpieces/ground/misc/Makefile.am       9 Oct 
2002 19:13:02 -0000       1.10
+++ Games/Pingus/data/images/groundpieces/ground/misc/Makefile.am       26 Oct 
2002 15:11:21 -0000
@@ -3,6 +3,7 @@
 pkgdatadir = $(datadir)/games/@PACKAGE@/images/groundpieces/ground/misc
 EXTRA_DIST = bpiece1.png bpiece2.png bpiece3.png bpiece4.png bpiece5.png 
bpiece6.png bpiece7.png bpiece8.png bpiece9.png brick1.png brick2.png 
brick3.png brick4.png brick5.png bridge1.png column.png column_down.png 
column_flat.png column_flat_left.png column_flat_right.png column_horz.png 
column_up.png column_vert.png dragon.png green1.png green2.png grey_stone1.png 
grey_stone2.png grey_stone3.png grey_stone4.png grey_stone5.png grey_stone6.png 
pfosten.png piece1.png piece2.png spike.png stone0.png stone1.png stone2.png 
stone3.png stone4.png stone5.png stone6.png stone7.png stoneblock1.png 
stoneblock2.png stoneblock3.png stoneblock5.png stoneblock6.png tree.png 
well.png wood1.png wood2.png 
 pkgdata_DATA = $(EXTRA_DIST)
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/groundpieces/ground/mud/Makefile.am
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/data/images/groundpieces/ground/mud/Makefile.am,v
retrieving revision 1.1
diff -u -r1.1 Makefile.am
--- Games/Pingus/data/images/groundpieces/ground/mud/Makefile.am        14 Feb 
2002 22:19:33 -0000      1.1
+++ Games/Pingus/data/images/groundpieces/ground/mud/Makefile.am        26 Oct 
2002 15:11:21 -0000
@@ -3,6 +3,7 @@
 pkgdatadir = $(datadir)/games/@PACKAGE@/images/groundpieces/ground/mud
 EXTRA_DIST = mudpiece1.png mudpiece2.png mudpiece3.png 
 pkgdata_DATA = $(EXTRA_DIST)
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/groundpieces/ground/mushroom/Makefile.am
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/data/images/groundpieces/ground/mushroom/Makefile.am,v
retrieving revision 1.2
diff -u -r1.2 Makefile.am
--- Games/Pingus/data/images/groundpieces/ground/mushroom/Makefile.am   20 Jan 
2002 13:01:34 -0000      1.2
+++ Games/Pingus/data/images/groundpieces/ground/mushroom/Makefile.am   26 Oct 
2002 15:11:21 -0000
@@ -3,6 +3,7 @@
 pkgdatadir = $(datadir)/games/@PACKAGE@/images/groundpieces/ground/mushroom
 EXTRA_DIST = toadstool1.png toadstool2.png toadstool3.png toadstool4.png 
 pkgdata_DATA = $(EXTRA_DIST)
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/groundpieces/ground/ordina/Makefile.am
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/data/images/groundpieces/ground/ordina/Makefile.am,v
retrieving revision 1.3
diff -u -r1.3 Makefile.am
--- Games/Pingus/data/images/groundpieces/ground/ordina/Makefile.am     1 Jun 
2002 12:08:31 -0000       1.3
+++ Games/Pingus/data/images/groundpieces/ground/ordina/Makefile.am     26 Oct 
2002 15:11:21 -0000
@@ -3,6 +3,7 @@
 pkgdatadir = $(datadir)/games/@PACKAGE@/images/groundpieces/ground/ordina
 EXTRA_DIST = cable1.png cable2.png cdrom1.png clavier1.png cpu1.png ecran.png 
sol2.png sol3.png sol4.png 
 pkgdata_DATA = $(EXTRA_DIST)
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/groundpieces/ground/real/Makefile.am
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/data/images/groundpieces/ground/real/Makefile.am,v
retrieving revision 1.4
diff -u -r1.4 Makefile.am
--- Games/Pingus/data/images/groundpieces/ground/real/Makefile.am       24 Jun 
2002 11:19:23 -0000      1.4
+++ Games/Pingus/data/images/groundpieces/ground/real/Makefile.am       26 Oct 
2002 15:11:21 -0000
@@ -3,6 +3,7 @@
 pkgdatadir = $(datadir)/games/@PACKAGE@/images/groundpieces/ground/real
 EXTRA_DIST = fish.png green1.png green2.png real1.png real10.png real11.png 
real12.png real13.png real14.png real15.png real16.png real17.png real18.png 
real19.png real2.png real20.png real21.png real22.png real23.png real24.png 
real25.png real26.png real27.png real28.png real29.png real3.png real30.png 
real34.png real35.png real36.png real37.png real4.png real5.png real6.png 
real7.png real8.png real9.png 
 pkgdata_DATA = $(EXTRA_DIST)
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/groundpieces/ground/rock/Makefile.am
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/data/images/groundpieces/ground/rock/Makefile.am,v
retrieving revision 1.4
diff -u -r1.4 Makefile.am
--- Games/Pingus/data/images/groundpieces/ground/rock/Makefile.am       24 Jun 
2002 11:19:23 -0000      1.4
+++ Games/Pingus/data/images/groundpieces/ground/rock/Makefile.am       26 Oct 
2002 15:11:21 -0000
@@ -3,6 +3,7 @@
 pkgdatadir = $(datadir)/games/@PACKAGE@/images/groundpieces/ground/rock
 EXTRA_DIST = blackrock1.png blackrock2.png blackrock3.png blackrock4.png 
rock1.png rock2.png rock3.png rock4.png rock5.png rock6.png stone1.png 
 pkgdata_DATA = $(EXTRA_DIST)
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/groundpieces/ground/signposts/Makefile.am
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/data/images/groundpieces/ground/signposts/Makefile.am,v
retrieving revision 1.3
diff -u -r1.3 Makefile.am
--- Games/Pingus/data/images/groundpieces/ground/signposts/Makefile.am  1 Jun 
2002 12:08:31 -0000       1.3
+++ Games/Pingus/data/images/groundpieces/ground/signposts/Makefile.am  26 Oct 
2002 15:11:21 -0000
@@ -3,6 +3,7 @@
 pkgdatadir = $(datadir)/games/@PACKAGE@/images/groundpieces/ground/signposts
 EXTRA_DIST = arrow_down.png arrow_left.png arrow_right.png arrow_up.png 
danger.png 
 pkgdata_DATA = $(EXTRA_DIST)
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/groundpieces/ground/snow/Makefile.am
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/data/images/groundpieces/ground/snow/Makefile.am,v
retrieving revision 1.6
diff -u -r1.6 Makefile.am
--- Games/Pingus/data/images/groundpieces/ground/snow/Makefile.am       29 Jun 
2002 17:39:21 -0000      1.6
+++ Games/Pingus/data/images/groundpieces/ground/snow/Makefile.am       26 Oct 
2002 15:11:21 -0000
@@ -3,6 +3,7 @@
 pkgdatadir = $(datadir)/games/@PACKAGE@/images/groundpieces/ground/snow
 EXTRA_DIST = cabin.png cabin_winter.png gpiece1.png groundice.png ice1.png 
ice2.png iceblock1.png igloo.png piece1.png piece2.png piece3.png piece7.png 
piece8.png piece9.png slopedr.png snowball1.png snowman.png xmas-tree.png 
 pkgdata_DATA = $(EXTRA_DIST)
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/groundpieces/ground/sortie/Makefile.am
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/data/images/groundpieces/ground/sortie/Makefile.am,v
retrieving revision 1.4
diff -u -r1.4 Makefile.am
--- Games/Pingus/data/images/groundpieces/ground/sortie/Makefile.am     24 Jun 
2002 11:19:23 -0000      1.4
+++ Games/Pingus/data/images/groundpieces/ground/sortie/Makefile.am     26 Oct 
2002 15:11:21 -0000
@@ -3,6 +3,7 @@
 pkgdatadir = $(datadir)/games/@PACKAGE@/images/groundpieces/ground/sortie
 EXTRA_DIST = ball1.png ball2.png ball3.png ball4.png column.png column2.png 
column3.png plate_forme.png plate_forme_left.png plate_forme_right.png 
tentacle1.png 
 pkgdata_DATA = $(EXTRA_DIST)
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/groundpieces/ground/space/Makefile.am
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/data/images/groundpieces/ground/space/Makefile.am,v
retrieving revision 1.3
diff -u -r1.3 Makefile.am
--- Games/Pingus/data/images/groundpieces/ground/space/Makefile.am      1 Jun 
2002 12:08:31 -0000       1.3
+++ Games/Pingus/data/images/groundpieces/ground/space/Makefile.am      26 Oct 
2002 15:11:21 -0000
@@ -3,6 +3,7 @@
 pkgdatadir = $(datadir)/games/@PACKAGE@/images/groundpieces/ground/space
 EXTRA_DIST = block1.png diagonal.png diagonalr.png smallblock1.png 
smallblock2.png smallblock3.png smalltower.png tower1.png way.png 
 pkgdata_DATA = $(EXTRA_DIST)
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/groundpieces/ground/sweets/Makefile.am
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/data/images/groundpieces/ground/sweets/Makefile.am,v
retrieving revision 1.3
diff -u -r1.3 Makefile.am
--- Games/Pingus/data/images/groundpieces/ground/sweets/Makefile.am     1 Jun 
2002 12:08:31 -0000       1.3
+++ Games/Pingus/data/images/groundpieces/ground/sweets/Makefile.am     26 Oct 
2002 15:11:21 -0000
@@ -3,6 +3,7 @@
 pkgdatadir = $(datadir)/games/@PACKAGE@/images/groundpieces/ground/sweets
 EXTRA_DIST = allsort1.png allsort2.png aquachoc.png cake1.png cake2.png 
cake3.png cake4.png cake5.png canestalk.png canestub.png canetop.png 
chocbar.png chocbloc-lowleft.png chocbloc-lowright.png chocbloc-topleft.png 
chocbloc-topright.png chocbloc.png goldchoc.png greenjellybaby.png icecream.png 
jube1.png jube2.png lollipop-purp.png lollipop.png mmblue.png mmbrown.png 
mmred.png mmyellow.png purpchoc.png purplechoc.png redjellybaby.png 
 pkgdata_DATA = $(EXTRA_DIST)
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/groundpieces/ground/test/Makefile.am
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/data/images/groundpieces/ground/test/Makefile.am,v
retrieving revision 1.3
diff -u -r1.3 Makefile.am
--- Games/Pingus/data/images/groundpieces/ground/test/Makefile.am       24 Jun 
2002 11:19:23 -0000      1.3
+++ Games/Pingus/data/images/groundpieces/ground/test/Makefile.am       26 Oct 
2002 15:11:21 -0000
@@ -3,6 +3,7 @@
 pkgdatadir = $(datadir)/games/@PACKAGE@/images/groundpieces/ground/test
 EXTRA_DIST = test1.png test10.png test2.png test3.png test4.png test5.png 
test6.png test7.png test8.png test9.png 
 pkgdata_DATA = $(EXTRA_DIST)
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/groundpieces/remove/Makefile.am
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/data/images/groundpieces/remove/Makefile.am,v
retrieving revision 1.2
diff -u -r1.2 Makefile.am
--- Games/Pingus/data/images/groundpieces/remove/Makefile.am    20 Jan 2002 
13:01:36 -0000      1.2
+++ Games/Pingus/data/images/groundpieces/remove/Makefile.am    26 Oct 2002 
15:11:21 -0000
@@ -1,6 +1,7 @@
 # autogenerated file, don't touch!
 
 SUBDIRS = misc 
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/groundpieces/remove/misc/Makefile.am
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/data/images/groundpieces/remove/misc/Makefile.am,v
retrieving revision 1.3
diff -u -r1.3 Makefile.am
--- Games/Pingus/data/images/groundpieces/remove/misc/Makefile.am       12 Oct 
2002 23:43:20 -0000      1.3
+++ Games/Pingus/data/images/groundpieces/remove/misc/Makefile.am       26 Oct 
2002 15:11:21 -0000
@@ -3,6 +3,7 @@
 pkgdatadir = $(datadir)/games/@PACKAGE@/images/groundpieces/remove/misc
 EXTRA_DIST = column1.png rect1.png rect2.png 
 pkgdata_DATA = $(EXTRA_DIST)
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/groundpieces/solid/Makefile.am
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/data/images/groundpieces/solid/Makefile.am,v
retrieving revision 1.4
diff -u -r1.4 Makefile.am
--- Games/Pingus/data/images/groundpieces/solid/Makefile.am     1 Jun 2002 
19:44:07 -0000       1.4
+++ Games/Pingus/data/images/groundpieces/solid/Makefile.am     26 Oct 2002 
15:11:21 -0000
@@ -1,6 +1,7 @@
 # autogenerated file, don't touch!
 
 SUBDIRS = crystal industrial misc rock 
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/groundpieces/solid/crystal/Makefile.am
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/data/images/groundpieces/solid/crystal/Makefile.am,v
retrieving revision 1.3
diff -u -r1.3 Makefile.am
--- Games/Pingus/data/images/groundpieces/solid/crystal/Makefile.am     1 Jun 
2002 12:08:31 -0000       1.3
+++ Games/Pingus/data/images/groundpieces/solid/crystal/Makefile.am     26 Oct 
2002 15:11:21 -0000
@@ -3,6 +3,7 @@
 pkgdatadir = $(datadir)/games/@PACKAGE@/images/groundpieces/solid/crystal
 EXTRA_DIST = rectsolid.png smallsolid.png squaresolid.png 
 pkgdata_DATA = $(EXTRA_DIST)
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/groundpieces/solid/industrial/Makefile.am
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/data/images/groundpieces/solid/industrial/Makefile.am,v
retrieving revision 1.3
diff -u -r1.3 Makefile.am
--- Games/Pingus/data/images/groundpieces/solid/industrial/Makefile.am  1 Jun 
2002 12:08:31 -0000       1.3
+++ Games/Pingus/data/images/groundpieces/solid/industrial/Makefile.am  26 Oct 
2002 15:11:21 -0000
@@ -3,6 +3,7 @@
 pkgdatadir = $(datadir)/games/@PACKAGE@/images/groundpieces/solid/industrial
 EXTRA_DIST = greybri1.png greybri2.png greybri3.png greybri5.png joint1.png 
joint2.png joint3.png joint4.png joint5.png rivet.png screw.png steel1.png 
steel2.png steel3.png steel4.png steel5.png weld1.png weld2.png weld3.png 
weld4.png weld5.png weld6.png weld7.png 
 pkgdata_DATA = $(EXTRA_DIST)
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/groundpieces/solid/misc/Makefile.am
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/data/images/groundpieces/solid/misc/Makefile.am,v
retrieving revision 1.5
diff -u -r1.5 Makefile.am
--- Games/Pingus/data/images/groundpieces/solid/misc/Makefile.am        1 Jun 
2002 19:44:07 -0000       1.5
+++ Games/Pingus/data/images/groundpieces/solid/misc/Makefile.am        26 Oct 
2002 15:11:22 -0000
@@ -3,6 +3,7 @@
 pkgdatadir = $(datadir)/games/@PACKAGE@/images/groundpieces/solid/misc
 EXTRA_DIST = metalplate_horiz.png metalplate_large.png metalplate_small.png 
metalplate_vert.png 
 pkgdata_DATA = $(EXTRA_DIST)
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/groundpieces/solid/rock/Makefile.am
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/data/images/groundpieces/solid/rock/Makefile.am,v
retrieving revision 1.2
diff -u -r1.2 Makefile.am
--- Games/Pingus/data/images/groundpieces/solid/rock/Makefile.am        20 Jan 
2002 13:01:37 -0000      1.2
+++ Games/Pingus/data/images/groundpieces/solid/rock/Makefile.am        26 Oct 
2002 15:11:22 -0000
@@ -3,6 +3,7 @@
 pkgdatadir = $(datadir)/games/@PACKAGE@/images/groundpieces/solid/rock
 EXTRA_DIST = granit1.png granit2.png granit3.png granit4.png granit5.png 
granit6.png 
 pkgdata_DATA = $(EXTRA_DIST)
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/groundpieces/transparent/Makefile.am
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/data/images/groundpieces/transparent/Makefile.am,v
retrieving revision 1.4
diff -u -r1.4 Makefile.am
--- Games/Pingus/data/images/groundpieces/transparent/Makefile.am       1 Jun 
2002 19:44:07 -0000       1.4
+++ Games/Pingus/data/images/groundpieces/transparent/Makefile.am       26 Oct 
2002 15:11:22 -0000
@@ -1,6 +1,7 @@
 # autogenerated file, don't touch!
 
 SUBDIRS = foliage industrial misc 
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/groundpieces/transparent/foliage/Makefile.am
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/data/images/groundpieces/transparent/foliage/Makefile.am,v
retrieving revision 1.3
diff -u -r1.3 Makefile.am
--- Games/Pingus/data/images/groundpieces/transparent/foliage/Makefile.am       
1 Jun 2002 12:08:32 -0000       1.3
+++ Games/Pingus/data/images/groundpieces/transparent/foliage/Makefile.am       
26 Oct 2002 15:11:22 -0000
@@ -3,6 +3,7 @@
 pkgdatadir = $(datadir)/games/@PACKAGE@/images/groundpieces/transparent/foliage
 EXTRA_DIST = grass1.png grass10.png grass11.png grass12.png grass13.png 
grass14.png grass15.png grass16.png grass2.png grass3.png grass4.png grass5.png 
grass6.png grass7.png grass8.png grass9.png turfconcave.png turfflat.png 
turfslopeleft.png turfslopeleft20.png turfsloperight.png turfsloperight20.png 
turfsmallbump.png turfsmallnook.png turftufty.png 
 pkgdata_DATA = $(EXTRA_DIST)
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/groundpieces/transparent/industrial/Makefile.am
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/data/images/groundpieces/transparent/industrial/Makefile.am,v
retrieving revision 1.3
diff -u -r1.3 Makefile.am
--- Games/Pingus/data/images/groundpieces/transparent/industrial/Makefile.am    
1 Jun 2002 12:08:32 -0000       1.3
+++ Games/Pingus/data/images/groundpieces/transparent/industrial/Makefile.am    
26 Oct 2002 15:11:22 -0000
@@ -3,6 +3,7 @@
 pkgdatadir = 
$(datadir)/games/@PACKAGE@/images/groundpieces/transparent/industrial
 EXTRA_DIST = gunge1.png gunge10.png gunge11.png gunge12.png gunge13.png 
gunge14.png gunge15.png gunge2.png gunge3.png gunge4.png gunge5.png gunge6.png 
gunge7.png gunge8.png gunge9.png 
 pkgdata_DATA = $(EXTRA_DIST)
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/groundpieces/transparent/misc/Makefile.am
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/data/images/groundpieces/transparent/misc/Makefile.am,v
retrieving revision 1.4
diff -u -r1.4 Makefile.am
--- Games/Pingus/data/images/groundpieces/transparent/misc/Makefile.am  1 Jun 
2002 12:08:32 -0000       1.4
+++ Games/Pingus/data/images/groundpieces/transparent/misc/Makefile.am  26 Oct 
2002 15:11:22 -0000
@@ -3,6 +3,7 @@
 pkgdatadir = $(datadir)/games/@PACKAGE@/images/groundpieces/transparent/misc
 EXTRA_DIST = flower.png moos1.png moos2.png moos3.png weed1.png weed2.png 
 pkgdata_DATA = $(EXTRA_DIST)
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/hotspots/Makefile.am
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/data/images/hotspots/Makefile.am,v
retrieving revision 1.6
diff -u -r1.6 Makefile.am
--- Games/Pingus/data/images/hotspots/Makefile.am       1 Jun 2002 19:44:07 
-0000       1.6
+++ Games/Pingus/data/images/hotspots/Makefile.am       26 Oct 2002 15:11:22 
-0000
@@ -1,6 +1,7 @@
 # autogenerated file, don't touch!
 
 SUBDIRS = desert misc signposts space 
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/hotspots/desert/Makefile.am
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/data/images/hotspots/desert/Makefile.am,v
retrieving revision 1.3
diff -u -r1.3 Makefile.am
--- Games/Pingus/data/images/hotspots/desert/Makefile.am        1 Jun 2002 
12:08:32 -0000       1.3
+++ Games/Pingus/data/images/hotspots/desert/Makefile.am        26 Oct 2002 
15:11:22 -0000
@@ -3,6 +3,7 @@
 pkgdatadir = $(datadir)/games/@PACKAGE@/images/hotspots/desert
 EXTRA_DIST = bigdimwall.png mediumdimwall.png mediumegyptpic.png 
mediummummy.png mediumsphinx.png smallD.png smallE.png smallG.png smallO.png 
smalldimwall.png smallegyptpic.png smallmummy.png smallsphinx.png 
 pkgdata_DATA = $(EXTRA_DIST)
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/hotspots/misc/Makefile.am
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/data/images/hotspots/misc/Makefile.am,v
retrieving revision 1.3
diff -u -r1.3 Makefile.am
--- Games/Pingus/data/images/hotspots/misc/Makefile.am  1 Jun 2002 12:08:32 
-0000       1.3
+++ Games/Pingus/data/images/hotspots/misc/Makefile.am  26 Oct 2002 15:11:22 
-0000
@@ -3,6 +3,7 @@
 pkgdatadir = $(datadir)/games/@PACKAGE@/images/hotspots/misc
 EXTRA_DIST = bridge.png tree.png 
 pkgdata_DATA = $(EXTRA_DIST)
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/hotspots/signposts/Makefile.am
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/data/images/hotspots/signposts/Makefile.am,v
retrieving revision 1.3
diff -u -r1.3 Makefile.am
--- Games/Pingus/data/images/hotspots/signposts/Makefile.am     1 Jun 2002 
12:08:32 -0000       1.3
+++ Games/Pingus/data/images/hotspots/signposts/Makefile.am     26 Oct 2002 
15:11:22 -0000
@@ -3,6 +3,7 @@
 pkgdatadir = $(datadir)/games/@PACKAGE@/images/hotspots/signposts
 EXTRA_DIST = arrow_east.png arrow_north.png arrow_northeast.png 
arrow_northwest.png arrow_south.png arrow_southeast.png arrow_southwest.png 
arrow_west.png basher.png blocker.png bomber.png bridger.png climber.png 
digger.png floater.png miner.png nogo.png 
 pkgdata_DATA = $(EXTRA_DIST)
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/hotspots/space/Makefile.am
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/data/images/hotspots/space/Makefile.am,v
retrieving revision 1.2
diff -u -r1.2 Makefile.am
--- Games/Pingus/data/images/hotspots/space/Makefile.am 20 Jan 2002 13:01:40 
-0000      1.2
+++ Games/Pingus/data/images/hotspots/space/Makefile.am 26 Oct 2002 15:11:22 
-0000
@@ -3,6 +3,7 @@
 pkgdatadir = $(datadir)/games/@PACKAGE@/images/hotspots/space
 EXTRA_DIST = engine.png 
 pkgdata_DATA = $(EXTRA_DIST)
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/liquids/Makefile.am
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/data/images/liquids/Makefile.am,v
retrieving revision 1.3
diff -u -r1.3 Makefile.am
--- Games/Pingus/data/images/liquids/Makefile.am        1 Jun 2002 12:08:32 
-0000       1.3
+++ Games/Pingus/data/images/liquids/Makefile.am        26 Oct 2002 15:11:22 
-0000
@@ -3,6 +3,7 @@
 pkgdatadir = $(datadir)/games/@PACKAGE@/images/liquids
 EXTRA_DIST = lava.png slime.png swater.png water.png water2.png water3.png 
water4.png water5.png water_cmap.png 
 pkgdata_DATA = $(EXTRA_DIST)
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/particles/Makefile.am
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/data/images/particles/Makefile.am,v
retrieving revision 1.3
diff -u -r1.3 Makefile.am
--- Games/Pingus/data/images/particles/Makefile.am      1 Jun 2002 12:08:32 
-0000       1.3
+++ Games/Pingus/data/images/particles/Makefile.am      26 Oct 2002 15:11:22 
-0000
@@ -3,6 +3,7 @@
 pkgdatadir = $(datadir)/games/@PACKAGE@/images/particles
 EXTRA_DIST = explosive.png ground.png ground_snow.png particle.png rain1.png 
rain2.png rain_splash.png smoke.png smoke2.png snow1.png snow2.png snow3.png 
snow4.png snow5.png 
 pkgdata_DATA = $(EXTRA_DIST)
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/pingus/Makefile.am
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/data/images/pingus/Makefile.am,v
retrieving revision 1.6
diff -u -r1.6 Makefile.am
--- Games/Pingus/data/images/pingus/Makefile.am 26 Jun 2002 12:08:38 -0000      
1.6
+++ Games/Pingus/data/images/pingus/Makefile.am 26 Oct 2002 15:11:22 -0000
@@ -3,6 +3,7 @@
 pkgdatadir = $(datadir)/games/@PACKAGE@/images/pingus
 EXTRA_DIST = angel.png bash_radius.png bash_radius_gfx.png basher.png 
basher1.png basher2.png basher3.png blocker.png blocker1.png blocker2.png 
blocker3.png boarder.png bomber.png bomber1.png bomber2.png bomber3.png 
bomber_radius.png bomber_radius_gfx.png brick.png brick_left.png 
brick_right.png bridger.png bridger1.png bridger2.png bridger3.png 
bridger_build.png bridger_start.png bridger_walk.png climber.png climber1.png 
climber2.png climber3.png digger.png digger1.png digger2.png digger3.png 
digger_radius.png digger_radius_gfx.png drownfall.png drownfall1.png 
drownfall2.png drownfall3.png drownwalk.png exit.png exit1.png exit2.png 
exit3.png explo0.png explo1.png explo2.png explo3.png faller.png faller1.png 
faller2.png faller3.png floater.png floater1.png floater2.png floater3.png 
laser_kill.png miner.png miner1.png miner2.png miner3.png rocketlauncher.png 
slider.png splash.png splash_debris.png splat.png splat1.png splat2.png 
splat3.png stopper.png stopper1.png stopper2.p!
ng stopper3.png superman.png tumble.png tumble1.png tumble2.png tumble3.png 
walker.png walker1.png walker2.png walker3.png xmas-walker.png 
 pkgdata_DATA = $(EXTRA_DIST)
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/special/Makefile.am
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/data/images/special/Makefile.am,v
retrieving revision 1.2
diff -u -r1.2 Makefile.am
--- Games/Pingus/data/images/special/Makefile.am        20 Jan 2002 13:01:42 
-0000      1.2
+++ Games/Pingus/data/images/special/Makefile.am        26 Oct 2002 15:11:26 
-0000
@@ -1,6 +1,7 @@
 # autogenerated file, don't touch!
 
 SUBDIRS = pacman 
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/special/pacman/Makefile.am
===================================================================
RCS file: 
/usr/local/cvsroot/Games/Pingus/data/images/special/pacman/Makefile.am,v
retrieving revision 1.3
diff -u -r1.3 Makefile.am
--- Games/Pingus/data/images/special/pacman/Makefile.am 1 Jun 2002 12:08:32 
-0000       1.3
+++ Games/Pingus/data/images/special/pacman/Makefile.am 26 Oct 2002 15:11:26 
-0000
@@ -3,6 +3,7 @@
 pkgdatadir = $(datadir)/games/@PACKAGE@/images/special/pacman
 EXTRA_DIST = blinky.png clyde.png inky.png pacman-bkg.png pacman-frame.png 
pacman-maze.png pacman.png pinky.png 
 pkgdata_DATA = $(EXTRA_DIST)
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/story/Makefile.am
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/data/images/story/Makefile.am,v
retrieving revision 1.2
diff -u -r1.2 Makefile.am
--- Games/Pingus/data/images/story/Makefile.am  20 Jan 2002 13:01:42 -0000      
1.2
+++ Games/Pingus/data/images/story/Makefile.am  26 Oct 2002 15:11:26 -0000
@@ -3,6 +3,7 @@
 pkgdatadir = $(datadir)/games/@PACKAGE@/images/story
 EXTRA_DIST = story0.jpg story1.jpg story2.jpg story3.jpg 
 pkgdata_DATA = $(EXTRA_DIST)
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/textures/Makefile.am
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/data/images/textures/Makefile.am,v
retrieving revision 1.7
diff -u -r1.7 Makefile.am
--- Games/Pingus/data/images/textures/Makefile.am       20 Oct 2002 18:28:48 
-0000      1.7
+++ Games/Pingus/data/images/textures/Makefile.am       26 Oct 2002 15:11:26 
-0000
@@ -1,8 +1,9 @@
 # autogenerated file, don't touch!
 
 pkgdatadir = $(datadir)/games/@PACKAGE@/images/textures
-EXTRA_DIST = anim_fire.jpg blueflame.jpg bluestars.jpg bwsortiebg.jpg 
clouds.jpg crystal.jpg cyanspace.jpg darkjungle.jpg default.png desert.jpg 
desert_room.jpg enchantedjungle.jpg flamebg.jpg fruitcaketile.jpg 
green_tendrils.png happyclouds.jpg icetile.jpg industrial-anim.jpg 
industrial.jpg latejungle.jpg lunartile.jpg mountain.png nightjungle.jpg 
ordina.jpg rock6.jpg rockagglo.jpg rocktile.jpg rooftile.jpg rooftile2.jpg 
solartile.jpg sortie.jpg sortiebgred.jpg stars.jpg stone.jpg stones.png 
thunderstorm.png weather-test.jpg 
+EXTRA_DIST = anim_fire.jpg blueflame.jpg bluestars.jpg bwsortiebg.jpg 
clouds.jpg crystal.jpg cyanspace.jpg darkjungle.jpg default.png desert.jpg 
desert_room.jpg enchantedjungle.jpg flamebg.jpg fruitcaketile.jpg 
green_tendrils.png greentex.jpg happyclouds.jpg icetile.jpg industrial-anim.jpg 
industrial.jpg latejungle.jpg lunartile.jpg mountain.png nightjungle.jpg 
ordina.jpg rock6.jpg rockagglo.jpg rocktile.jpg rooftile.jpg rooftile2.jpg 
solartile.jpg sortie.jpg sortiebgred.jpg stars.jpg stone.jpg stones.png 
thunderstorm.png weather-test.jpg 
 pkgdata_DATA = $(EXTRA_DIST)
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/traps/Makefile.am
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/data/images/traps/Makefile.am,v
retrieving revision 1.4
diff -u -r1.4 Makefile.am
--- Games/Pingus/data/images/traps/Makefile.am  1 Jun 2002 12:08:32 -0000       
1.4
+++ Games/Pingus/data/images/traps/Makefile.am  26 Oct 2002 15:11:26 -0000
@@ -3,6 +3,7 @@
 pkgdatadir = $(datadir)/games/@PACKAGE@/images/traps
 EXTRA_DIST = bumper.png bumper_cmap.png fake_exit.png gateway.png 
guillotineidle.png guillotinekill.png hammer.png laser_exit.png quicksand.png 
smasher.png smasher_cmap.png spike.png tut.png 
 pkgdata_DATA = $(EXTRA_DIST)
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/worldmaps/Makefile.am
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/data/images/worldmaps/Makefile.am,v
retrieving revision 1.2
diff -u -r1.2 Makefile.am
--- Games/Pingus/data/images/worldmaps/Makefile.am      20 Jan 2002 13:01:43 
-0000      1.2
+++ Games/Pingus/data/images/worldmaps/Makefile.am      26 Oct 2002 15:11:26 
-0000
@@ -3,6 +3,7 @@
 pkgdatadir = $(datadir)/games/@PACKAGE@/images/worldmaps
 EXTRA_DIST = pacman.jpg volcano.jpg 
 pkgdata_DATA = $(EXTRA_DIST)
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #
Index: Games/Pingus/data/images/worldobjs/Makefile.am
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/data/images/worldobjs/Makefile.am,v
retrieving revision 1.4
diff -u -r1.4 Makefile.am
--- Games/Pingus/data/images/worldobjs/Makefile.am      1 Jun 2002 12:08:32 
-0000       1.4
+++ Games/Pingus/data/images/worldobjs/Makefile.am      26 Oct 2002 15:11:26 
-0000
@@ -3,6 +3,7 @@
 pkgdatadir = $(datadir)/games/@PACKAGE@/images/worldobjs
 EXTRA_DIST = conveyorbelt_cmap.png conveyorbelt_left.png 
conveyorbelt_middle.png conveyorbelt_right.png iceblock.png iceblock_cmap.png 
infobox.png switchdoor_box.png switchdoor_switch.png switchdoor_tile.png 
switchdoor_tile_cmap.png teleporter.png teleporter2.png teleportertarget.png 
 pkgdata_DATA = $(EXTRA_DIST)
-Makefile.am: . $(SUBDIRS)
+current_file_list = $(wildcard $(srcdir)/*.png $(srcdir)/*.jpg)
+Makefile.am: $(current_file_list) $(SUBDIRS)
        perl $(top_srcdir)/data/images/generate_makefile.pl -a .
 # EOF #



-- 
`The tooth fairy teaches children that they can sell body parts for money.'
                       --- David Richerby




reply via email to

[Prev in Thread] Current Thread [Next in Thread]