diff options
author | Ton Voon <tonvoon@users.sourceforge.net> | 2007-09-13 11:36:57 (GMT) |
---|---|---|
committer | Ton Voon <tonvoon@users.sourceforge.net> | 2007-09-13 11:36:57 (GMT) |
commit | 0708e6fa812387214ca1da00d8bad941a2ad5aff (patch) | |
tree | 6c544412e666c80a3600f8e33f6a466c714a3328 /Makefile.am | |
parent | 29d5acb7c821c8be23b32be9e01b242efad5b872 (diff) | |
download | monitoring-plugins-0708e6fa812387214ca1da00d8bad941a2ad5aff.tar.gz |
Adding in optional Nagios::Plugin perl module (and
dependencies) compilation and installation
git-svn-id: https://nagiosplug.svn.sourceforge.net/svnroot/nagiosplug/nagiosplug/trunk@1777 f882894a-f735-0410-b71e-b25c423dba1c
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile.am b/Makefile.am index b76bf76..5c25f33 100644 --- a/Makefile.am +++ b/Makefile.am | |||
@@ -1,6 +1,6 @@ | |||
1 | ## Process this file with automake to produce Makefile.in | 1 | ## Process this file with automake to produce Makefile.in |
2 | 2 | ||
3 | SUBDIRS = gl lib plugins plugins-scripts plugins-root po | 3 | SUBDIRS = gl lib plugins plugins-scripts plugins-root po @PERLMODS_DIR@ |
4 | 4 | ||
5 | EXTRA_DIST = config.rpath \ | 5 | EXTRA_DIST = config.rpath \ |
6 | ABOUT-NLS ACKNOWLEDGEMENTS AUTHORS BUGS CODING FAQ LEGAL NEWS \ | 6 | ABOUT-NLS ACKNOWLEDGEMENTS AUTHORS BUGS CODING FAQ LEGAL NEWS \ |
@@ -23,8 +23,9 @@ install-root: | |||
23 | 23 | ||
24 | test: | 24 | test: |
25 | cd lib && $(MAKE) test | 25 | cd lib && $(MAKE) test |
26 | cd plugins; $(MAKE) test | 26 | if test "$(PERLMODS_DIR)" != ""; then cd perlmods && $(MAKE) test; fi |
27 | cd plugins-scripts; $(MAKE) test | 27 | cd plugins && $(MAKE) test |
28 | cd plugins-scripts && $(MAKE) test | ||
28 | 29 | ||
29 | nagios-plugins.spec: nagios-plugins.spec.in | 30 | nagios-plugins.spec: nagios-plugins.spec.in |
30 | sed "s/%%{VERSION}/${VERSION}/;s/%%{RELEASE}/${RELEASE}/;s/^%%{requires}$$//" $? > $@ | 31 | sed "s/%%{VERSION}/${VERSION}/;s/%%{RELEASE}/${RELEASE}/;s/^%%{requires}$$//" $? > $@ |