From 082afeb690d16c85b4970f680658a7ab197f07f9 Mon Sep 17 00:00:00 2001 From: kevind Date: Sun, 8 Aug 1999 19:44:30 +0000 Subject: [PATCH] * lib/Makefile.am, find/Makefile.am, doc/Makefile.am, configure.in, Makefile.am: update for automake-1.4 --- lib/Makefile.am | 52 +++++++++++++++++++++++++++++++++------------------- 1 file changed, 33 insertions(+), 19 deletions(-) rewrite lib/Makefile.am (94%) diff --git a/lib/Makefile.am b/lib/Makefile.am dissimilarity index 94% index 568061f..b4ec6d4 100644 --- a/lib/Makefile.am +++ b/lib/Makefile.am @@ -1,19 +1,33 @@ -LIBRARIES = find -find_SOURCES = regex.c dirname.c error.c filemode.c getopt.c getopt1.c \ -idcache.c listfile.c modechange.c nextelem.c savedir.c xmalloc.c getline.c \ -xstrdup.c xgetcwd.c fnmatch.c $(find_OPT_SOURCES) - -find_OPT_SOURCES = fileblocks.c memcmp.c memset.c mktime.c stpcpy.c strdup.c \ -strftime.c strspn.c strstr.c strtol.c alloca.c - -DIST_OTHER = fnmatch.h getopt.h modechange.h modetype.h pathmax.h \ -regex.h wait.h - -CONFIG_HEADER = ../config.h -INCLUDES = -I.. -I$(srcdir) - -fnmatch.o: fnmatch.h -getopt1.o: getopt.h -listfile.o xgetcwd.o: pathmax.h -modechange.o: modechange.h -regex.o: regex.h +noinst_LIBRARIES = libfind.a +libfind_a_SOURCES = regex.c \ + regex.h \ + dirname.c \ + error.c \ + filemode.c \ + getopt.c \ + getopt.h \ + getopt1.c \ + idcache.c \ + listfile.c \ + pathmax.h \ + modechange.c \ + modechange.h \ + nextelem.c \ + savedir.c \ + xmalloc.c \ + getline.c \ + xstrdup.c \ + xgetcwd.c \ + fnmatch.c \ + fnmatch.h + +libfind_a_LIBADD = @LIBOBJS@ \ + @ALLOCA@ + + +# Are these really needed? +EXTRA_DIST = modetype.h \ + wait.h \ + alloca.c + +INCLUDES = -I.. -I$(srcdir) -- 2.11.4.GIT