summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2002-11-06 11:37:47 +0000
committerJim Meyering <jim@meyering.net>2002-11-06 11:37:47 +0000
commitdef6c2371e6dd33f74583a13d4804a38f6cff149 (patch)
tree007d630129dd4efcd1a10390878a0fd4bf568123 /src
parent2fbdabd4b13b14b20dc02f6d437ad9b0e86939ef (diff)
downloadcoreutils-def6c2371e6dd33f74583a13d4804a38f6cff149.tar.xz
.
Diffstat (limited to 'src')
-rw-r--r--src/Makefile.in15
1 files changed, 11 insertions, 4 deletions
diff --git a/src/Makefile.in b/src/Makefile.in
index e0dd73af6..09590d7a2 100644
--- a/src/Makefile.in
+++ b/src/Makefile.in
@@ -1,4 +1,4 @@
-# Makefile.in generated by automake 1.7 from Makefile.am.
+# Makefile.in generated by automake 1.7.1 from Makefile.am.
# @configure_input@
# Copyright 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
@@ -267,16 +267,19 @@ AM_INSTALLCHECK_STD_OPTIONS_EXEMPT = false
all_programs = \
$(bin_PROGRAMS) \
- $(EXTRA_PROGRAMS) \
$(bin_SCRIPTS) \
+ $(EXTRA_PROGRAMS) \
$(EXTRA_SCRIPTS)
pm = progs-makefile
pr = progs-readme
+# Extract the list of authors from each file.
sed_filter = s/^ *//;s/N_ (//;s/^"//;s/")*$$//
+# Sometimes the string is on the same line as the #define...
s1 = '/^\#define AUTHORS \([^\\]\)/{;s//\1/;$(sed_filter);p;q;}'
+# Sometimes the string is on the backslash-continued line after the #define.
s2 = '/^\#define AUTHORS \\\\/{;n;$(sed_filter);p;q;}'
subdir = src
mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs
@@ -834,7 +837,7 @@ uninstall-binPROGRAMS:
done
clean-binPROGRAMS:
- -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS) > /dev/null 2>&1 || /bin/rm -f $(bin_PROGRAMS) > /dev/null 2>&1 || /bin/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 \
@@ -1547,9 +1550,11 @@ distdir = $(top_distdir)/$(PACKAGE)-$(VERSION)
distdir: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
+ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's|.|.|g'`; \
list='$(DISTFILES)'; for file in $$list; do \
case $$file in \
$(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
+ $(top_srcdir)/*) file=`echo "$$file" | sed "s|^$$topsrcdirstrip/|$(top_builddir)/|"`;; \
esac; \
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
dir=`echo "$$file" | sed -e 's,/[^/]*$$,,'`; \
@@ -1739,8 +1744,9 @@ check-README:
sed -n '/^The programs .* are:/,/^[a-zA-Z]/p' $(top_srcdir)/README \
| sed -n '/^ */s///p' | tr -s ' ' '\n' > $(pr)
diff $(pm) $(pr) && rm -rf $(pr) $(pm)
-# FIXME: handle *.sh
+# FIXME: handle *.sh; and use $(all_programs), not $(SOURCES)
../AUTHORS: $(SOURCES)
+ rm -f $@-t
( \
set -e; \
echo "Here are the names of the programs in this package,"; \
@@ -1755,6 +1761,7 @@ check-README:
echo "$$prog: $$a"; \
fi; \
done | sort -u ) > $@-t
+ chmod a-w $@-t
mv $@-t $@
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.