diff options
author | Ton Voon <tonvoon@users.sourceforge.net> | 2007-09-13 11:36:57 +0000 |
---|---|---|
committer | Ton Voon <tonvoon@users.sourceforge.net> | 2007-09-13 11:36:57 +0000 |
commit | 0708e6fa812387214ca1da00d8bad941a2ad5aff (patch) | |
tree | 6c544412e666c80a3600f8e33f6a466c714a3328 /perlmods/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 'perlmods/Makefile.am')
-rw-r--r-- | perlmods/Makefile.am | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/perlmods/Makefile.am b/perlmods/Makefile.am new file mode 100644 index 00000000..ebed523b --- /dev/null +++ b/perlmods/Makefile.am | |||
@@ -0,0 +1,13 @@ | |||
1 | perlmoduledir = $(exec_prefix)/perl | ||
2 | |||
3 | all-local: | ||
4 | $(top_srcdir)/tools/build_perl_modules -d $(perlmoduledir) -m . | ||
5 | |||
6 | install-exec-local: | ||
7 | $(top_srcdir)/tools/build_perl_modules -d $(perlmoduledir) -i . | ||
8 | |||
9 | test: | ||
10 | $(top_srcdir)/tools/build_perl_modules -d $(perlmoduledir) -t . | ||
11 | |||
12 | clean-local: | ||
13 | $(top_srcdir)/tools/build_perl_modules -d $(perlmoduledir) -c . | ||