mirror of
https://github.com/monitoring-plugins/monitoring-plugins.git
synced 2026-03-05 14:50:24 -05:00
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1052 f882894a-f735-0410-b71e-b25c423dba1c
47 lines
1 KiB
Makefile
47 lines
1 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
noinst_LIBRARIES = libcoreutils.a libnagiosplug.a
|
|
|
|
# Will auto pick up fsusage.c mountlist.c
|
|
libcoreutils_a_SOURCES = \
|
|
cloexec.c cloexec.h \
|
|
exit.h \
|
|
exitfail.c exitfail.h \
|
|
fsusage.h \
|
|
full-read.c full-read.h \
|
|
full-write.c full-write.h \
|
|
getopt.c getopt.h getopt1.c \
|
|
gettext.h \
|
|
mountlist.h \
|
|
safe-read.c safe-read.h \
|
|
safe-write.c safe-write.h \
|
|
unlocked-io.h \
|
|
xalloc.h \
|
|
xmalloc.c \
|
|
xstrdup.c
|
|
|
|
other_coreutils_files = \
|
|
error.c error.h \
|
|
fsusage.c \
|
|
getloadaavg.c \
|
|
malloc.c \
|
|
mountlist.c \
|
|
realloc.c \
|
|
stdbool_.h \
|
|
strtod.c
|
|
|
|
libcoreutils_a_LIBADD = $(LIBOBJS)
|
|
libcoreutils_a_DEPENDENCIES = $(libcoreutils_a_LIBADD)
|
|
|
|
libnagiosplug_a_SOURCES = snprintf.c
|
|
|
|
INCLUDES = -I$(srcdir) -I$(top_srcdir)/intl
|
|
|
|
BUILT_SOURCES = $(STDBOOL_H)
|
|
EXTRA_DIST = stdbool_.h
|
|
MOSTLYCLEANFILES = stdbool.h stdbool.ht
|
|
# Create stdbool.h on systems that lack a working one.
|
|
stdbool.h: stdbool_.h
|
|
sed -e 's/@''HAVE__BOOL''@/$(HAVE__BOOL)/g' $(srcdir)/stdbool_.h > $@t
|
|
mv $@t $@
|
|
|