pkg-monitoring-plugins/Makefile.am

56 lines
1.8 KiB
Makefile
Raw Normal View History

2013-11-26 22:53:19 +00:00
## Process this file with automake to produce Makefile.in
SUBDIRS = gl tap lib plugins plugins-scripts plugins-root po @PERLMODS_DIR@
2013-11-26 22:53:19 +00:00
EXTRA_DIST = config.rpath \
2013-11-26 22:53:44 +00:00
ABOUT-NLS ACKNOWLEDGEMENTS AUTHORS BUGS CODING FAQ LEGAL NEWS \
NP-VERSION-GEN REQUIREMENTS SUPPORT THANKS \
NPTest.pm pkg nagios-plugins.spec \
2013-11-26 22:53:19 +00:00
config_test/Makefile config_test/run_tests config_test/child_test.c \
tools/build_perl_modules \
2013-11-26 22:53:19 +00:00
tools/tinderbox_build
2013-11-26 22:53:44 +00:00
ACLOCAL_AMFLAGS = -I gl/m4 -I m4
2013-11-26 22:53:19 +00:00
localedir = $(datadir)/locale
DEFS = -DLOCALEDIR=\"$(localedir)\"
dist-hook:
2013-11-26 22:58:53 +00:00
$(MAKE) THANKS
echo ${VERSION} >$(distdir)/release
2013-11-26 22:53:19 +00:00
install-root:
cd plugins-root && $(MAKE) $@
2013-11-26 22:54:57 +00:00
test test-debug:
cd lib && $(MAKE) $@
if test "$(PERLMODS_DIR)" != ""; then cd && $(MAKE) $@; fi
2013-11-26 22:54:57 +00:00
cd plugins && $(MAKE) $@
cd plugins-scripts && $(MAKE) $@
2013-11-26 22:53:19 +00:00
# Solaris pkgmk
BUILDDIR = build-solaris
PACKDIR = build-pkg
PKGSCRIPT = pkg/solaris/solpkg
solpkg:
if [ ! -d $(BUILDDIR) ] ; then mkdir $(BUILDDIR); fi
if [ ! -d $(PACKDIR) ] ; then mkdir $(PACKDIR); fi
$(MAKE) all
$(MAKE) DESTDIR=$$PWD/$(BUILDDIR) install
2013-11-26 22:58:53 +00:00
$(INSTALL) plugins-root/pst3 $(BUILDDIR)$(libexecdir)
2013-11-26 22:53:19 +00:00
$(INSTALL) pkg/solaris/pkginfo $(BUILDDIR)
2013-11-26 22:58:53 +00:00
$(INSTALL) pkg/solaris/preinstall $(BUILDDIR)
2013-11-26 22:53:19 +00:00
cd $(BUILDDIR) && $(PERL) ../$(PKGSCRIPT) ../$(PACKDIR)
THANKS: THANKS.in
@echo "This software is brought to you by the Nagios Plugins Development Team. However," > $@
@echo "there have been many contributors to this project. Everyone below has helped in " >> $@
@echo "raising bug reports, creating patches or contributing new plugins." >> $@
@echo "" >> $@
perl -e ' while (<>) { print STDERR "Duplicate: $$_",$$/ if ($$a{$$_}) ; $$a{$$_}++}; print sort by_last_field (keys %a); sub by_last_field { ($$a1) = $$a =~ /\s(\w+)$$/; ($$b1) = $$b =~ /\s(\w+)$$/; $$a1 cmp $$b1}' $? >> $@
pkgclean:
rm -rf $(BUILDDIR) $(PACKDIR)