############################### # Makefile for Nagios # # Last Modified: 04-13-2008 ############################### # Source code directories SRC_BASE=@srcdir@/base SRC_CGI=@srcdir@/cgi SRC_HTM=@srcdir@/html SRC_MODULE=@srcdir@/module SRC_INCLUDE=@srcdir@/include SRC_COMMON=@srcdir@/common SRC_XDATA=@srcdir@/xdata SRC_CONTRIB=@srcdir@/contrib SRC_TTAP=@srcdir@/t-tap CC=@CC@ CFLAGS=@CFLAGS@ @DEFS@ LDFLAGS=@LDFLAGS@ @LIBS@ prefix=@prefix@ exec_prefix=@exec_prefix@ LOGDIR=@localstatedir@ CHECKRESULTDIR=@CHECKRESULTDIR@ CFGDIR=@sysconfdir@ BINDIR=@bindir@ CGIDIR=@sbindir@ LIBEXECDIR=@libexecdir@ HTMLDIR=@datadir@ INSTALL=@INSTALL@ INSTALL_OPTS=@INSTALL_OPTS@ COMMAND_OPTS=@COMMAND_OPTS@ HTTPD_CONF=@HTTPD_CONF@ INIT_DIR=@init_dir@ INIT_OPTS=-o root -g root CGICFGDIR=$(CGIDIR) PERLDIR=@PERLDIR@ USE_EVENTBROKER=@USE_EVENTBROKER@ USE_LIBTAP=@USE_LIBTAP@ INSTALLPERLSTUFF=@INSTALLPERLSTUFF@ CGIEXTRAS=@CGIEXTRAS@ SNPRINTF_O=@SNPRINTF_O@ CP=@CP@ @SET_MAKE@ none: @echo "Please supply a command line argument (i.e. 'make all'). Other targets are:" @echo " nagios cgis contrib modules" @echo " clean" @echo " install install-base install-cgis install-html install-exfoliation install-config install-init install-commandmode fullinstall" # @echo " uninstall" # FreeBSD make does not support -C option, so we'll use the Apache style... (patch by Stanley Hopcroft 12/27/1999) pretty: indent indent: @sh indent-all.sh ctags: ctags -R all: cd $(SRC_BASE) && $(MAKE) cd $(SRC_CGI) && $(MAKE) cd $(SRC_HTM) && $(MAKE) if [ x$(USE_EVENTBROKER) = xyes ]; then \ cd $(SRC_MODULE) && $(MAKE); \ fi @echo "" @echo "*** Compile finished ***" @echo "" @echo "If the main program and CGIs compiled without any errors, you" @echo "can continue with installing Nagios as follows (type 'make'" @echo "without any arguments for a list of all possible options):" @echo "" @echo " make install" @echo " - This installs the main program, CGIs, and HTML files" @echo "" @echo " make install-init" @echo " - This installs the init script in $(DESTDIR)$(INIT_DIR)" @echo "" @echo " make install-commandmode" @echo " - This installs and configures permissions on the" @echo " directory for holding the external command file" @echo "" @echo " make install-config" @echo " - This installs *SAMPLE* config files in $(DESTDIR)$(CFGDIR)" @echo " You'll have to modify these sample files before you can" @echo " use Nagios. Read the HTML documentation for more info" @echo " on doing this. Pay particular attention to the docs on" @echo " object configuration files, as they determine what/how" @echo " things get monitored!" @echo "" @echo " make install-webconf" @echo " - This installs the Apache config file for the Nagios" @echo " web interface" @echo "" @echo " make install-exfoliation" @echo " - This installs the Exfoliation theme for the Nagios" @echo " web interface" @echo "" @echo " make install-classicui" @echo " - This installs the classic theme for the Nagios" @echo " web interface" @echo "" @echo "" @echo "*** Support Notes *******************************************" @echo "" @echo "If you have questions about configuring or running Nagios," @echo "please make sure that you:" @echo "" @echo " - Look at the sample config files" @echo " - Read the documentation on the Nagios Library at:" @echo " http://library.nagios.com" @echo "" @echo "before you post a question to one of the mailing lists." @echo "Also make sure to include pertinent information that could" @echo "help others help you. This might include:" @echo "" @echo " - What version of Nagios you are using" @echo " - What version of the plugins you are using" @echo " - Relevant snippets from your config files" @echo " - Relevant error messages from the Nagios log file" @echo "" @echo "For more information on obtaining support for Nagios, visit:" @echo "" @echo " http://support.nagios.com" @echo "" @echo "*************************************************************" @echo "" @echo "Enjoy." @echo "" nagios: cd $(SRC_BASE) && $(MAKE) config: @echo "Sample config files are automatically generated once you run the" @echo "configure script. You can install the sample config files on your" @echo "system by using the 'make install-config' command." cgis: cd $(SRC_CGI) && $(MAKE) html: cd $(SRC_HTM) && $(MAKE) contrib: cd $(SRC_CONTRIB) && $(MAKE) modules: cd $(SRC_MODULE) && $(MAKE) clean: cd $(SRC_BASE) && $(MAKE) $@ cd $(SRC_CGI) && $(MAKE) $@ cd $(SRC_COMMON) && $(MAKE) $@ cd $(SRC_XDATA) && $(MAKE) $@ cd $(SRC_HTM) && $(MAKE) $@ cd $(SRC_INCLUDE) && $(MAKE) $@ cd $(SRC_CONTRIB) && $(MAKE) $@ cd $(SRC_MODULE) && $(MAKE) $@ cd $(SRC_TTAP) && $(MAKE) $@ rm -f *.cfg core rm -f *~ *.*~ */*~ */*.*~ */*/*.*~ distclean: clean cd $(SRC_BASE) && $(MAKE) $@ cd $(SRC_CGI) && $(MAKE) $@ cd $(SRC_COMMON) && $(MAKE) $@ cd $(SRC_XDATA) && $(MAKE) $@ cd $(SRC_HTM) && $(MAKE) $@ cd $(SRC_INCLUDE) && $(MAKE) $@ cd $(SRC_CONTRIB) && $(MAKE) $@ cd $(SRC_MODULE) && $(MAKE) $@ cd $(SRC_TTAP) && $(MAKE) $@ rm -f sample-config/*.cfg sample-config/*.conf sample-config/template-object/*.cfg rm -f daemon-init pkginfo rm -f Makefile subst rm -f config.log config.status config.cache rm -f tags devclean: distclean test: $(MAKE) test-perl $(MAKE) test-tap test-tap: tap/src/tap.o nagios cgis @if [ x$(USE_LIBTAP) = xyes ]; then \ cd $(SRC_TTAP) && $(MAKE) test; \ else \ echo "NOTE: You must run configure with --enable-libtap to run the C tap tests"; \ fi tap/src/tap.o: cd tap && $(MAKE) test-perl: cgis cd t && $(MAKE) test install-html: cd $(SRC_HTM) && $(MAKE) install make install-exfoliation install-base: cd $(SRC_BASE) && $(MAKE) install install-cgis: cd $(SRC_CGI) && $(MAKE) install install: cd $(SRC_BASE) && $(MAKE) $@ cd $(SRC_CGI) && $(MAKE) $@ cd $(SRC_HTM) && $(MAKE) $@ $(MAKE) install-exfoliation $(MAKE) install-basic install-unstripped: cd $(SRC_BASE) && $(MAKE) $@ cd $(SRC_CGI) && $(MAKE) $@ cd $(SRC_HTM) && $(MAKE) $@ $(MAKE) install-exfoliation $(MAKE) install-basic install-basic: $(INSTALL) -m 775 $(INSTALL_OPTS) -d $(DESTDIR)$(LIBEXECDIR) $(INSTALL) -m 775 $(INSTALL_OPTS) -d $(DESTDIR)$(LOGDIR) $(INSTALL) -m 775 $(INSTALL_OPTS) -d $(DESTDIR)$(LOGDIR)/archives $(INSTALL) -m 775 $(INSTALL_OPTS) -d $(DESTDIR)$(CHECKRESULTDIR) if [ $(INSTALLPERLSTUFF) = yes ]; then \ $(INSTALL) -m 664 $(INSTALL_OPTS) p1.pl $(DESTDIR)$(BINDIR); \ fi; @echo "" @echo "*** Main program, CGIs and HTML files installed ***" @echo "" @echo "You can continue with installing Nagios as follows (type 'make'" @echo "without any arguments for a list of all possible options):" @echo "" @echo " make install-init" @echo " - This installs the init script in $(DESTDIR)$(INIT_DIR)" @echo "" @echo " make install-commandmode" @echo " - This installs and configures permissions on the" @echo " directory for holding the external command file" @echo "" @echo " make install-config" @echo " - This installs sample config files in $(DESTDIR)$(CFGDIR)" @echo "" install-config: $(INSTALL) -m 775 $(INSTALL_OPTS) -d $(DESTDIR)$(CFGDIR) $(INSTALL) -m 775 $(INSTALL_OPTS) -d $(DESTDIR)$(CFGDIR)/objects $(INSTALL) -b -m 664 $(INSTALL_OPTS) sample-config/nagios.cfg $(DESTDIR)$(CFGDIR)/nagios.cfg $(INSTALL) -b -m 664 $(INSTALL_OPTS) sample-config/cgi.cfg $(DESTDIR)$(CFGDIR)/cgi.cfg $(INSTALL) -b -m 660 $(INSTALL_OPTS) sample-config/resource.cfg $(DESTDIR)$(CFGDIR)/resource.cfg $(INSTALL) -b -m 664 $(INSTALL_OPTS) sample-config/template-object/templates.cfg $(DESTDIR)$(CFGDIR)/objects/templates.cfg $(INSTALL) -b -m 664 $(INSTALL_OPTS) sample-config/template-object/commands.cfg $(DESTDIR)$(CFGDIR)/objects/commands.cfg $(INSTALL) -b -m 664 $(INSTALL_OPTS) sample-config/template-object/contacts.cfg $(DESTDIR)$(CFGDIR)/objects/contacts.cfg $(INSTALL) -b -m 664 $(INSTALL_OPTS) sample-config/template-object/timeperiods.cfg $(DESTDIR)$(CFGDIR)/objects/timeperiods.cfg $(INSTALL) -b -m 664 $(INSTALL_OPTS) sample-config/template-object/localhost.cfg $(DESTDIR)$(CFGDIR)/objects/localhost.cfg $(INSTALL) -b -m 664 $(INSTALL_OPTS) sample-config/template-object/windows.cfg $(DESTDIR)$(CFGDIR)/objects/windows.cfg $(INSTALL) -b -m 664 $(INSTALL_OPTS) sample-config/template-object/printer.cfg $(DESTDIR)$(CFGDIR)/objects/printer.cfg $(INSTALL) -b -m 664 $(INSTALL_OPTS) sample-config/template-object/switch.cfg $(DESTDIR)$(CFGDIR)/objects/switch.cfg @echo "" @echo "*** Config files installed ***" @echo "" @echo "Remember, these are *SAMPLE* config files. You'll need to read" @echo "the documentation for more information on how to actually define" @echo "services, hosts, etc. to fit your particular needs." @echo "" install-webconf: $(INSTALL) -m 644 sample-config/httpd.conf $(DESTDIR)$(HTTPD_CONF)/nagios.conf @echo "" @echo "*** Nagios/Apache conf file installed ***" @echo "" install-exfoliation: cp -rf contrib/exfoliation/stylesheets/* $(DESTDIR)$(HTMLDIR)/stylesheets cp -rf contrib/exfoliation/images/* $(DESTDIR)$(HTMLDIR)/images @echo "" @echo "*** Exfoliation theme installed ***" @echo "NOTE: Use 'make install-classicui' to revert to classic Nagios theme"; @echo "" install-classicui: cp -rf html/stylesheets/* $(DESTDIR)$(HTMLDIR)/stylesheets cp -rf html/images/* $(DESTDIR)$(HTMLDIR)/images @echo "" @echo "*** Classic theme installed ***" @echo "NOTE: Use 'make install-exfoliation' to use new Nagios theme"; @echo "" install-init: install-daemoninit install-daemoninit: $(INSTALL) -m 755 -d $(INIT_OPTS) $(DESTDIR)$(INIT_DIR) $(INSTALL) -m 755 $(INIT_OPTS) daemon-init $(DESTDIR)$(INIT_DIR)/nagios @echo "" @echo "*** Init script installed ***" @echo "" install-commandmode: $(INSTALL) -m 775 $(COMMAND_OPTS) -d $(DESTDIR)$(LOGDIR)/rw chmod g+s $(DESTDIR)$(LOGDIR)/rw @echo "" @echo "*** External command directory configured ***" @echo "" fullinstall: install install-init install-commandmode install-webconf # Uninstall is too destructive if base install directory is /usr, etc. #uninstall: # rm -rf $(DESTDIR)$(BINDIR)/nagios $(DESTDIR)$(CGIDIR)/*.cgi $(DESTDIR)$(CFGDIR)/*.cfg $(DESTDIR)$(HTMLDIR) # # Targets for creating packages on various architectures # # Solaris pkgmk PACKDIR=@PACKDIR@ VERSION=@VERSION@ Prototype: if [ ! -d $(PACKDIR) ] ; then mkdir $(PACKDIR); fi if [ ! -d $(PACKDIR)/etc ] ; then mkdir $(PACKDIR)/etc; fi if [ ! -d $(PACKDIR)/etc/init.d ] ; then mkdir $(PACKDIR)/etc/init.d; fi if [ ! -d $(PACKDIR)/etc/nagios ] ; then mkdir $(PACKDIR)/etc/nagios; fi $(MAKE) all $(MAKE) DESTDIR=$(PACKDIR) INIT_OPTS='' INSTALL_OPTS='' COMMAND_OPTS='' nagios_grp='' nagios_usr='' fullinstall $(INSTALL) -m 644 sample-config/nagios.cfg $(PACKDIR)$(CFGDIR)/nagios.cfg.$(VERSION) $(INSTALL) -m 644 sample-config/cgi.cfg $(PACKDIR)$(CFGDIR)/cgi.cfg.$(VERSION) $(INSTALL) -m 640 sample-config/resource.cfg $(PACKDIR)$(CFGDIR)/resource.cfg.$(VERSION) $(INSTALL) -m 664 sample-config/template-object/bigger.cfg $(PACKDIR)$(CFGDIR)/bigger.cfg.$(VERSION) $(INSTALL) -m 664 sample-config/template-object/minimal.cfg $(PACKDIR)$(CFGDIR)/minimal.cfg.$(VERSION) $(INSTALL) -m 664 sample-config/template-object/checkcommands.cfg $(PACKDIR)$(CFGDIR)/checkcommands.cfg.$(VERSION) $(INSTALL) -m 664 sample-config/template-object/misccommands.cfg $(PACKDIR)$(CFGDIR)/misccommands.cfg.$(VERSION) cd contrib; $(MAKE) all; $(MAKE) DESTDIR=$(PACKDIR) INIT_OPTS='' INSTALL_OPTS='' COMMAND_OPTS='' nagios_grp='' nagios_usr='' install echo i pkginfo> Prototype if [ -f checkinstall ] ; then echo i checkinstall>> Prototype; fi if [ -f preinstall ] ; then echo i preinstall>> Prototype; fi if [ -f postinstall ] ; then echo i postinstall>> Prototype; fi pkgproto $(PACKDIR)=/ | sed -e "s|$(LOGNAME) $(GROUP)$$|root root|" | egrep -v "(s|d) none (/|/etc|/var|/usr|/usr/local) " >> Prototype pkg/nagios/pkgmap: Prototype mkdir $(PACKDIR)/nagios pkgmk -o -r / -f Prototype -d $(PACKDIR) nagios nagios.SPARC.pkg.tar.gz: pkg/nagios/pkgmap cd $(PACKDIR) && tar -cf - nagios | gzip -9 -c > ../nagios.SPARC.pkg.tar.gz pkgset: nagios.SPARC.pkg.tar.gz pkgclean: rm -rf pkg Prototype nagios.SPARC.pkg.tar.gz # Targets that always get built .PHONY: indent clean clean distclean