pkg-monitoring-plugins/plugins-root/Makefile.am

98 lines
2.9 KiB
Makefile
Raw Normal View History

2013-11-26 22:53:19 +00:00
## Process this file with automake to produce Makefile.in
if RELEASE_PRESENT
2013-11-26 22:57:29 +00:00
NP_VERSION = @NP_RELEASE@
else
NP-VERSION-FILE: .FORCE-NP-VERSION-FILE
@$(SHELL_PATH) $(top_srcdir)/NP-VERSION-GEN
.FORCE-NP-VERSION-FILE:
-include NP-VERSION-FILE
endif
AM_CFLAGS = -DNP_VERSION='"$(NP_VERSION)"'
2013-11-26 22:54:57 +00:00
VPATH = $(top_srcdir) $(top_srcdir)/lib $(top_srcdir)/plugins $(top_srcdir)/plugins/t $(srcdir)
2013-11-26 22:53:19 +00:00
2013-11-26 22:57:29 +00:00
AM_CPPFLAGS = -I.. -I$(top_srcdir)/lib -I$(top_srcdir)/gl -I$(top_srcdir)/intl -I$(top_srcdir)/plugins @SSLINCLUDE@
2013-11-26 22:53:19 +00:00
localedir = $(datadir)/locale
DEFS = -DLOCALEDIR=\"$(localedir)\" @DEFS@
2013-11-26 22:55:28 +00:00
# Don't add LTLIBINTL to all, as pst3 doesn't need it
#LIBS = @LTLIBINTL@ @LIBS@
2013-11-26 22:53:19 +00:00
noinst_PROGRAMS = check_dhcp check_icmp @EXTRAS_ROOT@
EXTRA_PROGRAMS = pst3
EXTRA_DIST = t pst3.c
2013-11-26 22:53:19 +00:00
2014-07-11 19:01:00 +00:00
BASEOBJS = ../plugins/utils.o ../lib/libmonitoringplug.a ../gl/libgnu.a
2013-11-26 22:53:19 +00:00
NETOBJS = ../plugins/netutils.o $(BASEOBJS) $(EXTRA_NETOBJS)
NETLIBS = $(NETOBJS) $(SOCKETLIBS)
TESTS_ENVIRONMENT = perl -I $(top_builddir) -I $(top_srcdir)
TESTS = @PLUGIN_TEST@
test:
perl -I $(top_builddir) -I $(top_srcdir) ../test.pl
2022-10-19 15:24:24 +00:00
test-debug:
NPTEST_DEBUG=1 HARNESS_VERBOSE=1 perl -I $(top_builddir) -I $(top_srcdir) ../test.pl
2013-11-26 22:53:44 +00:00
setuid_root_mode = ug=rx,u+s
2013-11-26 22:53:19 +00:00
# /* Author Coreutils team - see ACKNOWLEDGEMENTS */
INSTALL_SUID = \
for f in $(noinst_PROGRAMS) ; do \
p=$$f; \
echo " $(INSTALL_PROGRAM) $$p $(DESTDIR)$(libexecdir)/$$p"; \
$(INSTALL_PROGRAM) $$p $(DESTDIR)$(libexecdir)/$$p; \
echo " chown root $(DESTDIR)$(libexecdir)/$$p"; \
chown root $(DESTDIR)$(libexecdir)/$$p; \
echo " chmod $(setuid_root_mode) $(DESTDIR)$(libexecdir)/$$p"; \
chmod $(setuid_root_mode) $(DESTDIR)$(libexecdir)/$$p; \
done
install-root: $(noinst_PROGRAMS)
@$(INSTALL_SUID)
install-exec-local: $(noinst_PROGRAMS)
@TMPFILE=$(DESTDIR)$(libexecdir)/.setuid-$$$$; \
rm -f $$TMPFILE; \
echo > $$TMPFILE; \
## See if we can create a setuid root executable in $(libexecdir).
## If not, then don't even try to install setuid plugins.
can_create_suid_root_executable=no; \
chown root $$TMPFILE > /dev/null 2>&1 \
&& chmod $(setuid_root_mode) $$TMPFILE > /dev/null 2>&1 \
&& can_create_suid_root_executable=yes; \
rm -f $$TMPFILE; \
if test $$can_create_suid_root_executable = yes; then \
$(INSTALL_SUID); \
else \
echo "WARNING: insufficient access; not installing setuid plugins"; \
echo "NOTE: to install setuid plugins, run 'make install-root' as root"; \
fi
# /* Author Coreutils team sub-citation */
##############################################################################
# the actual targets
2013-11-26 22:55:28 +00:00
check_dhcp_LDADD = @LTLIBINTL@ $(NETLIBS)
check_icmp_LDADD = @LTLIBINTL@ $(NETLIBS) $(SOCKETLIBS)
2013-11-26 22:57:29 +00:00
2013-11-26 22:55:28 +00:00
# -m64 needed at compiler and linker phase
pst3_CFLAGS = @PST3CFLAGS@
pst3_LDFLAGS = @PST3CFLAGS@
2014-07-11 19:01:00 +00:00
# pst3 must not use monitoringplug/gnulib includes!
2013-11-26 22:57:29 +00:00
pst3_CPPFLAGS =
2013-11-26 22:53:19 +00:00
check_dhcp_DEPENDENCIES = check_dhcp.c $(NETOBJS) $(DEPLIBS)
check_icmp_DEPENDENCIES = check_icmp.c $(NETOBJS)
clean-local:
rm -f NP-VERSION-FILE