diff options
author | Jim Meyering <jim@meyering.net> | 1997-06-29 03:27:24 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1997-06-29 03:27:24 +0000 |
commit | 9654920c40d76b5999a35f889b6b822714515bb9 (patch) | |
tree | 1b552b598cda7a8ef4559e1a5684579fd0230e30 /lib | |
parent | a13135d09ed890150075b2b227b7f1df5ef07d6b (diff) | |
download | coreutils-9654920c40d76b5999a35f889b6b822714515bb9.tar.xz |
.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Makefile.in | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/lib/Makefile.in b/lib/Makefile.in index 49a47d553..73e2ddb4c 100644 --- a/lib/Makefile.in +++ b/lib/Makefile.in @@ -1,6 +1,6 @@ -# Makefile.in generated automatically by automake 1.1p from Makefile.am +# Makefile.in generated automatically by automake 1.2 from Makefile.am -# Copyright (C) 1994, 1995, 1996 Free Software Foundation, Inc. +# Copyright (C) 1994, 1995, 1996, 1997 Free Software Foundation, Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. @@ -49,10 +49,6 @@ POST_INSTALL = true NORMAL_UNINSTALL = true PRE_UNINSTALL = true POST_UNINSTALL = true -ACLOCAL = @ACLOCAL@ -AUTOCONF = @AUTOCONF@ -AUTOHEADER = @AUTOHEADER@ -AUTOMAKE = @AUTOMAKE@ CATALOGS = @CATALOGS@ CATOBJEXT = @CATOBJEXT@ CC = @CC@ @@ -167,7 +163,7 @@ default: all $(srcdir)/Makefile.in: @MAINT@ Makefile.am $(top_srcdir)/configure.in $(ACLOCAL_M4) cd $(top_srcdir) && $(AUTOMAKE) --gnits lib/Makefile -Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status $(BUILT_SOURCES) +Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status cd $(top_builddir) \ && CONFIG_FILES=$(subdir)/$@ CONFIG_HEADERS= $(SHELL) ./config.status @@ -241,9 +237,10 @@ distdir: $(DISTFILES) MKDEP = gcc -M $(DEFS) $(INCLUDES) $(CPPFLAGS) $(CFLAGS) +DEPS_MAGIC := $(shell mkdir .deps > /dev/null 2>&1 || :) -include .deps/.P .deps/.P: $(BUILT_SOURCES) - test -d .deps || { mkdir .deps;echo > $@; } + echo > $@ -include $(DEP_FILES) @@ -260,7 +257,9 @@ maintainer-clean-depend: @echo "Computing dependencies for $<..." @o='o'; \ test -n "$o" && o='$$o'; \ - $(MKDEP) $< | sed "s,^\(.*\)\.o:,\1.$$o \1.l$$o $@:," > $@ + $(MKDEP) $< >$@.tmp \ + && sed "s,^\(.*\)\.o:,\1.$$o \1.l$$o $@:," < $@.tmp > $@ \ + && rm -f $@.tmp info: dvi: check: all @@ -280,7 +279,7 @@ uninstall: all: Makefile $(LIBRARIES) $(HEADERS) install-strip: - $(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' install + $(MAKE) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' INSTALL_SCRIPT='$(INSTALL_PROGRAM)' install installdirs: |