* modules/alloca-opt (Makefile.am): Remove explicit dependency on
authorPaul Eggert <eggert@cs.ucla.edu>
Fri, 22 Jul 2005 22:04:12 +0000 (22:04 +0000)
committerPaul Eggert <eggert@cs.ucla.edu>
Fri, 22 Jul 2005 22:04:12 +0000 (22:04 +0000)
$(ALLOCA_H), redundant through BUILT_SOURCES.
* modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
redundant through BUILT_SOURCES.
* modules/byteswap (Makefile.am): Remove explicit dependency on
$(BYTESWAP_H), redundant through BUILT_SOURCES.
* modules/fnmatch (Makefile.am): Remove explicit dependency on
$(FNMATCH_H), redundant through BUILT_SOURCES.
* modules/getopt (Makefile.am): Remove explicit dependency on
$(GETOPT_H), redundant through BUILT_SOURCES.
* modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
redundant through BUILT_SOURCES.
* modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
redundant through BUILT_SOURCES.
* modules/stdbool (Makefile.am): Remove explicit dependency on
$(STDBOOL_H), redundant through BUILT_SOURCES.
* modules/stdint (Makefile.am): Remove explicit dependency on
$(STDINT_H), redundant through BUILT_SOURCES.
* modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
Remove explicit dependency on $(SYSEXITS_H).
Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.

ChangeLog
modules/alloca-opt
modules/argz
modules/byteswap
modules/fnmatch
modules/getopt
modules/glob
modules/poll
modules/stdbool
modules/stdint
modules/sysexits

index 72a155fa1a7a10b10ed7693a7bc09be974d56983..40245ce21438cd8e2ffce1a10c3f9eeed60982a3 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,27 @@
+2005-07-22  Bruno Haible  <bruno@clisp.org>
+
+       * modules/alloca-opt (Makefile.am): Remove explicit dependency on
+       $(ALLOCA_H), redundant through BUILT_SOURCES.
+       * modules/argz (Makefile.am): Remove explicit dependency on $(ARGZ_H),
+       redundant through BUILT_SOURCES.
+       * modules/byteswap (Makefile.am): Remove explicit dependency on
+       $(BYTESWAP_H), redundant through BUILT_SOURCES.
+       * modules/fnmatch (Makefile.am): Remove explicit dependency on
+       $(FNMATCH_H), redundant through BUILT_SOURCES.
+       * modules/getopt (Makefile.am): Remove explicit dependency on
+       $(GETOPT_H), redundant through BUILT_SOURCES.
+       * modules/glob (Makefile.am): Remove explicit dependency on $(GLOB_H),
+       redundant through BUILT_SOURCES.
+       * modules/poll (Makefile.am): Remove explicit dependency on $(POLL_H),
+       redundant through BUILT_SOURCES.
+       * modules/stdbool (Makefile.am): Remove explicit dependency on
+       $(STDBOOL_H), redundant through BUILT_SOURCES.
+       * modules/stdint (Makefile.am): Remove explicit dependency on
+       $(STDINT_H), redundant through BUILT_SOURCES.
+       * modules/sysexits (Makefile.am): Add $(SYSEXITS_H) to BUILT_SOURCES.
+       Remove explicit dependency on $(SYSEXITS_H).
+       Reported by Alexandre Duret-Lutz <adl@src.lip6.fr>.
+
 2005-07-18  Bruno Haible  <bruno@clisp.org>
 
        * modules/lock: New file.
index efef0a6f0a6870658b16dcf609ace85b98c7d193..2e051d3deb11070e59a31c5c4b1aba6477cf28ad 100644 (file)
@@ -16,9 +16,8 @@ Makefile.am:
 BUILT_SOURCES += $(ALLOCA_H)
 EXTRA_DIST += alloca_.h
 
-# We need the following in order to create an <alloca.h> when the system
+# We need the following in order to create <alloca.h> when the system
 # doesn't have one that works with the given compiler.
-all-local $(lib_OBJECTS): $(ALLOCA_H)
 alloca.h: alloca_.h
        cp $(srcdir)/alloca_.h $@-t
        mv $@-t $@
index c8729eca06634d03e5b8642ca83977f6036ae1f1..bf587c4928e118d0b8c45bc6fa47416212351b86 100644 (file)
@@ -15,9 +15,8 @@ Makefile.am:
 BUILT_SOURCES += $(ARGZ_H)
 EXTRA_DIST += argz_.h
 
-# We need the following in order to create an <argz.h> when the system
+# We need the following in order to create <argz.h> when the system
 # doesn't have one that works with the given compiler.
-all-local $(lib_OBJECTS): $(ARGZ_H)
 argz.h: argz_.h
        cp $(srcdir)/argz_.h $@-t
        mv $@-t $@
index 8202a3ba3f921195ad2e73bf12c172156ea6be8c..1a3e0378c140607debeae060d0069f4dabfea7fc 100644 (file)
@@ -14,9 +14,8 @@ Makefile.am:
 BUILT_SOURCES += $(BYTESWAP_H)
 EXTRA_DIST += byteswap_.h
 
-# We need the following in order to create <byteswap.h> when the system
+# We need the following in order to create <byteswap.h> when the system
 # doesn't have one.
-all-local $(lib_OBJECTS): $(BYTESWAP_H)
 byteswap.h: byteswap_.h
        cp $(srcdir)/$< $@-t
        mv $@-t $@
index 15935c565e518132560c432b3dc302a42f33fbde..18f278c7d0bc30aa1b6bb0adafaa7ecc11f30e50 100644 (file)
@@ -19,9 +19,8 @@ Makefile.am:
 BUILT_SOURCES += $(FNMATCH_H)
 EXTRA_DIST += fnmatch_.h fnmatch_loop.c
 
-# We need the following in order to create an <fnmatch.h> when the system
+# We need the following in order to create <fnmatch.h> when the system
 # doesn't have one that supports the required API.
-all-local $(lib_OBJECTS): $(FNMATCH_H)
 fnmatch.h: fnmatch_.h
        cp $(srcdir)/fnmatch_.h $@-t
        mv $@-t $@
index 87022d1b558b9ee06aec84a5c4042f591ff1d6a7..420250c3a171cd45cc6db0bfdf4017bf976ef31a 100644 (file)
@@ -18,9 +18,8 @@ Makefile.am:
 BUILT_SOURCES += $(GETOPT_H)
 EXTRA_DIST += getopt_.h getopt_int.h
 
-# We need the following in order to create an <getopt.h> when the system
+# We need the following in order to create <getopt.h> when the system
 # doesn't have one that works with the given compiler.
-all-local $(lib_OBJECTS): $(GETOPT_H)
 getopt.h: getopt_.h
        cp $(srcdir)/getopt_.h $@-t
        mv $@-t $@
index 0247d01a5724abc900b294923caad4bb2688d070..c01987e2ea26306230b92891c18b53bc512e7c3e 100644 (file)
@@ -26,9 +26,8 @@ Makefile.am:
 BUILT_SOURCES += $(GLOB_H)
 EXTRA_DIST += glob_.h
 
-# We need the following in order to create an <glob.h> when the system
+# We need the following in order to create <glob.h> when the system
 # doesn't have one that works with the given compiler.
-all-local $(lib_OBJECTS): $(GLOB_H)
 glob.h: glob_.h
        cp $(srcdir)/glob_.h $@-t
        mv $@-t $@
index 4695af26826c17725fa6d04f8abb9a37e7cd286c..eaa28931e8484c0733fb7021a968ca3569cba7e7 100644 (file)
@@ -15,9 +15,8 @@ Makefile.am:
 BUILT_SOURCES += $(POLL_H)
 EXTRA_DIST += poll_.h
 
-# We need the following in order to create an <poll.h> when the system
+# We need the following in order to create <poll.h> when the system
 # doesn't have one.
-all-local $(lib_OBJECTS): $(POLL_H)
 poll.h: poll_.h
        cp $(srcdir)/poll_.h $@-t
        mv $@-t $@
index 786f125845f92e89218e7172189350f3dde97685..e3e06ab63b36a4b74ae012e8452980c9b20e8190 100644 (file)
@@ -15,9 +15,8 @@ Makefile.am:
 BUILT_SOURCES += $(STDBOOL_H)
 EXTRA_DIST += stdbool_.h
 
-# We need the following in order to create an <stdbool.h> when the system
+# We need the following in order to create <stdbool.h> when the system
 # doesn't have one that works.
-all-local $(lib_OBJECTS): $(STDBOOL_H)
 stdbool.h: stdbool_.h
        sed -e 's/@''HAVE__BOOL''@/$(HAVE__BOOL)/g' < $(srcdir)/stdbool_.h > $@-t
        mv $@-t $@
@@ -31,4 +30,3 @@ LGPL
 
 Maintainer:
 Bruno Haible
-
index 8441aba357fe68f74687cbfacad5876e09a3c6c5..8d5690ab675f3438a404775a7ae2770a7a573a49 100644 (file)
@@ -17,9 +17,8 @@ Makefile.am:
 BUILT_SOURCES += $(STDINT_H)
 EXTRA_DIST += stdint_.h
 
-# We need the following in order to create an <stdint.h> when the system
+# We need the following in order to create <stdint.h> when the system
 # doesn't have one that works with the given compiler.
-all-local $(lib_OBJECTS): $(STDINT_H)
 stdint.h: stdint_.h
        sed -e 's/@''HAVE_LONG_64BIT''@/$(HAVE_LONG_64BIT)/g;s/@''HAVE_LONG_LONG_64BIT@/$(HAVE_LONG_LONG_64BIT)/g' < $(srcdir)/stdint_.h > $@-t
        mv $@-t $@
index 817336108f1e9006d30aa22ecbece5bc7d7b734f..2decc04e7a30432cd589692e52c0fcec72af0cb6 100644 (file)
@@ -11,11 +11,11 @@ configure.ac:
 gl_SYSEXITS
 
 Makefile.am:
+BUILT_SOURCES += $(SYSEXITS_H)
 EXTRA_DIST += sysexit_.h
 
-# We need the following in order to create <sysexits.h> when the system
+# We need the following in order to create <sysexits.h> when the system
 # doesn't have one that works with the given compiler.
-all-local $(lib_OBJECTS): $(SYSEXITS_H)
 sysexits.h: sysexit_.h
        cp $(srcdir)/sysexit_.h sysexits.h-t
        mv sysexits.h-t sysexits.h