summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1994-09-03 04:27:02 +0000
committerJim Meyering <jim@meyering.net>1994-09-03 04:27:02 +0000
commitaf521756619ab02f6b53bb4840b4b5f91d2332b7 (patch)
tree93a03f968e144dcaebfa3bca46fe44eeeb4b36f8 /lib
parentde8c62d0f0316034b37e788eb1b25f08c151709e (diff)
downloadcoreutils-af521756619ab02f6b53bb4840b4b5f91d2332b7.tar.xz
.
Diffstat (limited to 'lib')
-rw-r--r--lib/Makefile.in12
1 files changed, 6 insertions, 6 deletions
diff --git a/lib/Makefile.in b/lib/Makefile.in
index 458b516b1..5737aa4ef 100644
--- a/lib/Makefile.in
+++ b/lib/Makefile.in
@@ -37,7 +37,7 @@ error.c filemode.c fsusage.c full-write.c getopt.c getopt1.c \
getversion.c group-member.c idcache.c isdir.c makepath.c \
modechange.c mountlist.c safe-read.c savedir.c \
stripslash.c xgetcwd.c xmalloc.c xstrdup.c userspec.c yesno.c \
-fileblocks.c fnmatch.c ftruncate.c mkdir.c mktime.c rename.c stpcpy.c \
+fileblocks.c fnmatch.c ftruncate.c mkdir.c mktime.c rename.c rmdir.c stpcpy.c \
strdup.c strstr.c alloca.c long-options.c
OBJECTS = getdate.o posixtm.o \
@@ -58,7 +58,7 @@ all: libfu.a
.SUFFIXES = .c .o
.c.o:
- $(CC) -c $(CPPFLAGS) $(DEFS) -I.. -I$(srcdir) $(CFLAGS) $<
+ $(CC) -c $(CPPFLAGS) $(DEFS) -I. -I.. -I$(srcdir) $(CFLAGS) $<
Makefile: ../config.status Makefile.in
CONFIG_FILES=$@ CONFIG_HEADERS= ../config.status
@@ -99,19 +99,19 @@ extract_stat = sed -e 's/@l@//g' -e 's/@L@//g'
extract_lstat = sed -e 's/@l@/l/g' -e 's/@L@/L/g'
safe-lstat.c: safe-xstat.c.in
- $(extract_lstat) safe-xstat.c.in > $@-tmp
+ $(extract_lstat) $(srcdir)/safe-xstat.c.in > $@-tmp
mv $@-tmp $@
safe-lstat.h: safe-xstat.h.in
- $(extract_lstat) safe-xstat.h.in > $@-tmp
+ $(extract_lstat) $(srcdir)/safe-xstat.h.in > $@-tmp
mv $@-tmp $@
safe-stat.c: safe-xstat.c.in
- $(extract_stat) safe-xstat.c.in > $@-tmp
+ $(extract_stat) $(srcdir)/safe-xstat.c.in > $@-tmp
mv $@-tmp $@
safe-stat.h: safe-xstat.h.in
- $(extract_stat) safe-xstat.h.in > $@-tmp
+ $(extract_stat) $(srcdir)/safe-xstat.h.in > $@-tmp
mv $@-tmp $@
safe-stat.o: safe-stat.h