diff options
-rw-r--r-- | Makefile.in | 1 | ||||
-rw-r--r-- | lib/Makefile.in | 20 | ||||
-rw-r--r-- | src/Makefile.in | 2 |
3 files changed, 13 insertions, 10 deletions
diff --git a/Makefile.in b/Makefile.in index a789fda68..b90a38a78 100644 --- a/Makefile.in +++ b/Makefile.in @@ -314,6 +314,7 @@ EXTRA_DIST = Makefile.cfg Makefile.maint GNUmakefile \ .kludge-stamp .prev-version THANKS-to-translators THANKStt.in \ .x-sc_space_tab .x-sc_sun_os_names \ .x-sc_file_system .x-sc_obsolete_symbols \ + .x-sc_useless_cpp_parens \ announce-gen \ m4/ChangeLog \ old/fileutils/ChangeLog \ diff --git a/lib/Makefile.in b/lib/Makefile.in index 73e73a41d..c669b0301 100644 --- a/lib/Makefile.in +++ b/lib/Makefile.in @@ -217,8 +217,9 @@ ARFLAGS = cru libcoreutils_a_AR = $(AR) $(ARFLAGS) am__DEPENDENCIES_1 = @LIBOBJS@ am__DEPENDENCIES_2 = @ALLOCA@ -am_libcoreutils_a_OBJECTS = allocsa.$(OBJEXT) full-read.$(OBJEXT) \ - full-write.$(OBJEXT) localcharset.$(OBJEXT) mbswidth.$(OBJEXT) \ +am_libcoreutils_a_OBJECTS = allocsa.$(OBJEXT) fprintime.$(OBJEXT) \ + full-read.$(OBJEXT) full-write.$(OBJEXT) \ + localcharset.$(OBJEXT) mbswidth.$(OBJEXT) \ readtokens0.$(OBJEXT) time_r.$(OBJEXT) unicodeio.$(OBJEXT) \ xalloc-die.$(OBJEXT) xgethostname.$(OBJEXT) xmemcoll.$(OBJEXT) \ xstrndup.$(OBJEXT) xstrtoimax.$(OBJEXT) xstrtoumax.$(OBJEXT) @@ -369,13 +370,13 @@ noinst_LIBRARIES = libcoreutils.a LDADD = $(noinst_LIBRARIES) AM_CPPFLAGS = -I.. -I$(srcdir) libcoreutils_a_SOURCES = allocsa.c allocsa.h euidaccess.h exit.h \ - full-read.c full-read.h full-write.c full-write.h gettext.h \ - localcharset.c localcharset.h mbswidth.c mbswidth.h \ - readtokens0.c readtokens0.h time_r.c time_r.h unicodeio.c \ - unicodeio.h verify.h xalloc-die.c xgethostname.c \ - xgethostname.h xmemcoll.c xmemcoll.h xstrndup.c xstrndup.h \ - xstrtoimax.c xstrtoumax.c printf-args.h printf-parse.h \ - vasprintf.h vasnprintf.h + fprintime.c fprintime.h full-read.c full-read.h full-write.c \ + full-write.h gettext.h localcharset.c localcharset.h \ + mbswidth.c mbswidth.h readtokens0.c readtokens0.h time_r.c \ + time_r.h unicodeio.c unicodeio.h verify.h xalloc-die.c \ + xgethostname.c xgethostname.h xmemcoll.c xmemcoll.h xstrndup.c \ + xstrndup.h xstrtoimax.c xstrtoumax.c printf-args.h \ + printf-parse.h vasprintf.h vasnprintf.h libcoreutils_a_LIBADD = $(LIBOBJS) $(ALLOCA) libcoreutils_a_DEPENDENCIES = $(libcoreutils_a_LIBADD) lib_OBJECTS = $(libcoreutils_a_OBJECTS) @@ -614,6 +615,7 @@ distclean-compile: @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/xstrtoul.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/yesno.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/allocsa.Po@am__quote@ +@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fprintime.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/full-read.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/full-write.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/localcharset.Po@am__quote@ diff --git a/src/Makefile.in b/src/Makefile.in index 83614dcf3..69813b1c4 100644 --- a/src/Makefile.in +++ b/src/Makefile.in @@ -945,7 +945,7 @@ uninstall-binPROGRAMS: done clean-binPROGRAMS: - -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS) + -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS) > /dev/null 2>&1 || /bin/rm -f $(bin_PROGRAMS) installcheck-binPROGRAMS: $(bin_PROGRAMS) bad=0; pid=$$$$; list="$(bin_PROGRAMS)"; for p in $$list; do \ |