diff options
author | Jim Meyering <jim@meyering.net> | 1995-05-13 13:55:56 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 1995-05-13 13:55:56 +0000 |
commit | 56c8261d7ea0cc01bc1cbab375fd19c449f4103d (patch) | |
tree | a712f05c96e3756f4dfa8010375f288e5ad37c7e /lib | |
parent | fe6756d42e48bc9dc6c276d138ef7d098206e17e (diff) | |
download | coreutils-56c8261d7ea0cc01bc1cbab375fd19c449f4103d.tar.xz |
(maintainer-clean): Rename from realclean.
(.PHONY): New dependencies.
[.c.o]: Remove -I. since safe-l?stat.h is no longer used.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/Makefile.in | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/lib/Makefile.in b/lib/Makefile.in index ccbfac0ad..00f9886da 100644 --- a/lib/Makefile.in +++ b/lib/Makefile.in @@ -58,7 +58,7 @@ all: libfu.a .SUFFIXES: .c .o .c.o: - $(CC) -c $(CPPFLAGS) $(DEFS) -I. -I.. -I$(srcdir) $(CFLAGS) $< + $(CC) -c $(CPPFLAGS) $(DEFS) -I.. -I$(srcdir) $(CFLAGS) $< subdir = lib Makefile: ../config.status Makefile.in @@ -83,7 +83,7 @@ mostlyclean: clean distclean: clean rm -f Makefile *.tab.c tposixtm.c -realclean: distclean +maintainer-clean: distclean rm -f TAGS getdate.c posixtm.c distdir = ../`cat ../distname`/$(subdir) @@ -133,6 +133,9 @@ makepath.o: makepath.h obstack.o: obstack.h group-member.o: group-member.h +.PHONY: all check clean dist distclean install installdirs \ +maintainer-clean mostlyclean uninstall + # Tell versions [3.59,3.63) of GNU make not to export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: |