| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677 |
- ###############################
- # Makefile for NRPE
- #
- # Last Modified: 03-14-2007
- ###############################
- # Source code directories
- SRC_BASE=./src/
- SRC_INCLUDE=./include/
- CC=@CC@
- CFLAGS=@CFLAGS@ @DEFS@
- LDFLAGS=@LDFLAGS@ @LIBS@
- prefix=@prefix@
- exec_prefix=@exec_prefix@
- CFGDIR=@sysconfdir@
- BINDIR=@bindir@
- SBINDIR=@sbindir@
- LIBEXECDIR=@libexecdir@
- INSTALL=@INSTALL@
- NAGIOS_INSTALL_OPTS=@NAGIOS_INSTALL_OPTS@
- NRPE_INSTALL_OPTS=@NRPE_INSTALL_OPTS@
- INIT_DIR=@init_dir@
- INIT_OPTS=-o root -g root
- all:
- cd $(SRC_BASE); $(MAKE) ; cd ..
- @echo ""
- @echo "*** Compile finished ***"
- @echo ""
- @echo "If the NRPE daemon and client compiled without any errors, you"
- @echo "can continue with the installation or upgrade process."
- @echo ""
- @echo "Read the PDF documentation (NRPE.pdf) for information on the next"
- @echo "steps you should take to complete the installation or upgrade."
- @echo ""
- nrpe:
- cd $(SRC_BASE); $(MAKE) ; cd ..
- check_nrpe:
- cd $(SRC_BASE); $(MAKE) ; cd ..
- install-plugin:
- cd $(SRC_BASE) && $(MAKE) $@
- install-daemon:
- cd $(SRC_BASE) && $(MAKE) $@
- install:
- cd $(SRC_BASE) && $(MAKE) $@
- install-xinetd:
- $(INSTALL) -m 644 sample-config/nrpe.xinetd /etc/xinetd.d/nrpe
- install-daemon-config:
- $(INSTALL) -m 775 $(NAGIOS_INSTALL_OPTS) -d $(DESTDIR)$(CFGDIR)
- $(INSTALL) -m 644 $(NRPE_INSTALL_OPTS) sample-config/nrpe.cfg $(DESTDIR)$(CFGDIR)
- clean:
- cd $(SRC_BASE); $(MAKE) $@ ; cd ..
- rm -f core
- rm -f *~ */*~
- distclean: clean
- cd $(SRC_BASE); $(MAKE) $@ ; cd ..
- rm -f config.log config.status config.cache nrpe.cfg nrpe.xinetd subst $(SRC_INCLUDE)/config.h init-script init-script.debian init-script.freebsd init-script.suse
- rm -f sample-config/*.cfg sample-config/*.xinetd
- rm -f Makefile
- devclean: distclean
|