mirror of
git://git.sv.gnu.org/findutils.git
synced 2026-02-02 14:38:58 +01:00
* lib/check-regexprops.sh: New test. Run regexprops as a check, and compare its output against the contents of doc/regexprops.texi. If there is a mismatch for regexprops.texi, save the correct version. * lib/Makefile.am: Run check-regexprops.sh for 'make check'. * doc/Makefile.am: don't clean regexprops.texi, and don't generate it automatically. * doc/regexprops.texi: add into source control. it automatically. * doc/.gitignore: don't ignore regexprops.texi
53 lines
1.5 KiB
Makefile
53 lines
1.5 KiB
Makefile
## Process this file with automake to produce Makefile.in.
|
|
|
|
AUTOMAKE_OPTIONS = 1.5 gnits
|
|
# no-dependencies
|
|
AM_CFLAGS = $(WARN_CFLAGS)
|
|
|
|
noinst_LIBRARIES = libfind.a
|
|
|
|
check_PROGRAMS = regexprops
|
|
check_SCRIPTS = check-regexprops
|
|
regexprops_SOURCES = regexprops.c regextype.c
|
|
|
|
TESTS =
|
|
if CROSS_COMPILING
|
|
# The regexprops program needs to be a native executable, so we
|
|
# can't build it with a cross-compiler.
|
|
else
|
|
TESTS += check-regexprops
|
|
endif
|
|
|
|
libfind_a_SOURCES = gnulib-version.c findutils-version.c
|
|
EXTRA_DIST = modetype.h extendbuf.h savedirinfo.h buildcmd.h \
|
|
gnulib-version.h gnulib-version.c findutils-version.h \
|
|
check-regexprops.sh
|
|
BUILT_SOURCES = gnulib-version.c
|
|
SUFFIXES =
|
|
MOSTLYCLEANFILES =
|
|
CLEANFILES = check-regexprops
|
|
DISTCLEANFILES =
|
|
MAINTAINERCLEANFILES =
|
|
|
|
|
|
INCLUDES = -I../gnulib/lib -I$(top_srcdir)/gnulib/lib
|
|
LDADD = ../gnulib/lib/libgnulib.a $(LIBINTL)
|
|
|
|
libfind_a_SOURCES += modetype.h nextelem.h printquoted.h listfile.h \
|
|
regextype.h dircallback.h
|
|
libfind_a_SOURCES += listfile.c nextelem.c extendbuf.c buildcmd.c savedirinfo.c \
|
|
forcefindlib.c qmark.c printquoted.c regextype.c dircallback.c
|
|
|
|
EXTRA_DIST += waitpid.c forcefindlib.c
|
|
TESTS_ENVIRONMENT = REGEXPROPS=regexprops$(EXEEXT)
|
|
libfind_a_LIBADD = @FINDLIBOBJS@
|
|
libfind_a_DEPENDENCIES = @FINDLIBOBJS@
|
|
# libfind_la_LIBADD = @LTFINDLIBOBJS@
|
|
|
|
# libfind_a_OBJECTS += @FINDLIBOBJS@
|
|
# libfind_la_OBJECTS += @LTFINDLIBOBJS@
|
|
|
|
check-regexprops: check-regexprops.sh
|
|
cp $(srcdir)/check-regexprops.sh check-regexprops
|
|
chmod +x check-regexprops
|