85 lines
3.3 KiB
Makefile
85 lines
3.3 KiB
Makefile
prefix=@prefix@
|
|
SYSCONFDIR=@sysconfdir@
|
|
BINDIR=@bindir@
|
|
LIBEXECDIR=@libexecdir@
|
|
LIBDIR=@libdir@
|
|
CGIDIR=@sbindir@
|
|
HTMLDIR=@datadir@
|
|
INSTALL=@INSTALL@
|
|
INSTALL_OPTS=@INSTALL_OPTS@
|
|
PERFDATADIR=@PERFDATA_DIR@
|
|
DATAROOTDIR=@datarootdir@
|
|
PKG_NAME=@PKG_NAME@
|
|
PKG_VERSION=@PKG_VERSION@
|
|
HTTPD_CONF=@HTTPD_CONF@
|
|
CP=@CP@
|
|
|
|
all html:
|
|
|
|
clean:
|
|
-rm -f pnp/config.php
|
|
-rm -f pnp/process_perfdata.cfg-sample
|
|
-rm -f pnp/npcd.cfg-sample
|
|
-rm -f misccommands.cfg-sample
|
|
-rm -f nagios.cfg-sample
|
|
-rm -f httpd.conf
|
|
-rm -f pnp/pnp4nagios_release
|
|
-rm -f lighttpd.pnp4nagios.conf
|
|
-rm -f nginx.pnp4nagios.conf
|
|
|
|
distclean: clean
|
|
-rm -f Makefile
|
|
|
|
devclean: distclean
|
|
|
|
install:
|
|
-rm -f $(DESTDIR)$(HTMLDIR)/conf/config.php
|
|
|
|
$(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(SYSCONFDIR)
|
|
$(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(SYSCONFDIR)/config.d
|
|
$(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(SYSCONFDIR)/check_commands
|
|
$(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(SYSCONFDIR)/pages
|
|
$(INSTALL) -m 644 $(INSTALL_OPTS) pnp/pnp4nagios_release $(DESTDIR)$(SYSCONFDIR)
|
|
$(INSTALL) -m 644 $(INSTALL_OPTS) pnp/background.pdf $(DESTDIR)$(SYSCONFDIR)
|
|
$(INSTALL) -m 644 $(INSTALL_OPTS) pnp/config.php $(DESTDIR)$(SYSCONFDIR)/config.php.$(PKG_VERSION); \
|
|
$(INSTALL) -m 644 $(INSTALL_OPTS) pnp/config.php $(DESTDIR)$(SYSCONFDIR); \
|
|
|
|
install-config:
|
|
|
|
$(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(SYSCONFDIR)
|
|
$(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(SYSCONFDIR)/check_commands
|
|
$(INSTALL) -m 755 $(INSTALL_OPTS) -d $(DESTDIR)$(SYSCONFDIR)/pages
|
|
|
|
$(INSTALL) -m 644 $(INSTALL_OPTS) pnp/config.php $(DESTDIR)$(SYSCONFDIR)/config.php.$(PKG_VERSION); \
|
|
$(INSTALL) -m 644 $(INSTALL_OPTS) pnp/config.php $(DESTDIR)$(SYSCONFDIR); \
|
|
|
|
if [ ! -e $(DESTDIR)$(SYSCONFDIR)/config_local.php ] ;then \
|
|
$(INSTALL) -m 644 $(INSTALL_OPTS) pnp/config.php $(DESTDIR)$(SYSCONFDIR)/config_local.php; \
|
|
fi
|
|
|
|
if [ -e $(DESTDIR)$(SYSCONFDIR)/process_perfdata.cfg ] ;then \
|
|
$(INSTALL) -m 644 $(INSTALL_OPTS) pnp/process_perfdata.cfg-sample $(DESTDIR)$(SYSCONFDIR)/process_perfdata.cfg.$(PKG_VERSION); \
|
|
else\
|
|
$(INSTALL) -m 644 $(INSTALL_OPTS) pnp/process_perfdata.cfg-sample $(DESTDIR)$(SYSCONFDIR)/process_perfdata.cfg; \
|
|
fi
|
|
|
|
if [ -e $(DESTDIR)$(SYSCONFDIR)/npcd.cfg ] ;then \
|
|
$(INSTALL) -m 644 $(INSTALL_OPTS) pnp/npcd.cfg-sample $(DESTDIR)$(SYSCONFDIR)/npcd.cfg.$(PKG_VERSION); \
|
|
else\
|
|
$(INSTALL) -m 644 $(INSTALL_OPTS) pnp/npcd.cfg-sample $(DESTDIR)$(SYSCONFDIR)/npcd.cfg; \
|
|
fi
|
|
|
|
$(INSTALL) -m 644 $(INSTALL_OPTS) pnp/rra.cfg-sample $(DESTDIR)$(SYSCONFDIR)
|
|
$(INSTALL) -m 644 $(INSTALL_OPTS) misccommands.cfg-sample $(DESTDIR)$(SYSCONFDIR)
|
|
$(INSTALL) -m 644 $(INSTALL_OPTS) nagios.cfg-sample $(DESTDIR)$(SYSCONFDIR)
|
|
$(INSTALL) -m 644 $(INSTALL_OPTS) pnp/check_commands/check_nwstat.cfg-sample $(DESTDIR)$(SYSCONFDIR)/check_commands
|
|
$(INSTALL) -m 644 $(INSTALL_OPTS) pnp/check_commands/check_nrpe.cfg-sample $(DESTDIR)$(SYSCONFDIR)/check_commands
|
|
$(INSTALL) -m 644 $(INSTALL_OPTS) pnp/check_commands/check_all_local_disks.cfg-sample $(DESTDIR)$(SYSCONFDIR)/check_commands
|
|
$(INSTALL) -m 644 $(INSTALL_OPTS) pnp/pages/web_traffic.cfg-sample $(DESTDIR)$(SYSCONFDIR)/pages
|
|
|
|
install-webconf:
|
|
|
|
$(INSTALL) -m 755 -d $(DESTDIR)$(HTTPD_CONF)
|
|
$(INSTALL) -m 644 httpd.conf $(DESTDIR)$(HTTPD_CONF)/$(PKG_NAME).conf
|
|
|