mirror of
https://https.git.savannah.gnu.org/git/findutils.git
synced 2026-01-26 15:39:06 +00:00
41 lines
1.0 KiB
Makefile
41 lines
1.0 KiB
Makefile
## Process this file with automake to produce Makefile.in.
|
|
|
|
AUTOMAKE_OPTIONS = 1.5 gnits
|
|
# no-dependencies
|
|
|
|
noinst_LIBRARIES = libfind.a
|
|
|
|
if CROSS_COMPILING
|
|
# The regexprops program needs to be a native executable, so we
|
|
# can't build it with a cross-compiler.
|
|
else
|
|
noinst_PROGRAMS = regexprops
|
|
regexprops_SOURCES = regexprops.c regextype.c
|
|
endif
|
|
|
|
libfind_a_SOURCES =
|
|
EXTRA_DIST = modetype.h wait.h extendbuf.h savedirinfo.h buildcmd.h
|
|
BUILT_SOURCES =
|
|
SUFFIXES =
|
|
MOSTLYCLEANFILES =
|
|
CLEANFILES =
|
|
DISTCLEANFILES =
|
|
MAINTAINERCLEANFILES =
|
|
|
|
|
|
INCLUDES = -I../gnulib/lib -I$(top_srcdir)/gnulib/lib
|
|
LDADD = ../gnulib/lib/libgnulib.a
|
|
|
|
libfind_a_SOURCES += modetype.h nextelem.h printquoted.h listfile.h regextype.h
|
|
libfind_a_SOURCES += listfile.c nextelem.c extendbuf.c buildcmd.c savedirinfo.c forcefindlib.c qmark.c printquoted.c regextype.c
|
|
|
|
EXTRA_DIST += waitpid.c forcefindlib.c
|
|
|
|
|
|
libfind_a_LIBADD = @FINDLIBOBJS@
|
|
libfind_a_DEPENDENCIES = @FINDLIBOBJS@
|
|
# libfind_la_LIBADD = @LTFINDLIBOBJS@
|
|
|
|
# libfind_a_OBJECTS += @FINDLIBOBJS@
|
|
# libfind_la_OBJECTS += @LTFINDLIBOBJS@
|