# $HeadURL$ $LastChangedRevision$ ifndef FACILITY_CHECKMK_MK FACILITY_CHECKMK_MK = 1 # In pass #1: load recipe generators # In pass #0: load generated recipes include method-install.mk # Variables mentioned both in pass#1 and pass#0. # Tell recipe generators what to generate recipes for ifeq ($(PCMS_PASS_NUM),1) all.install: check-mk-agent.install xinetd.install # The real Makefile else ifeq ($(PCMS_PASS_NUM),0) all.facility: checkmk.facility ifeq ($(CHECKMK_CLIENT_FLAG),true) checkmk.facility: check-mk-agent.install touch $@ ifeq ($(CHECKMK_CLIENT_XINETD_FLAG),true) check-mk-agent.install: xinetd.install endif ifeq ($(CHECKMK_CLIENT_SSH_FLAG),true) check-mk-agent.install: ssh.facility endif else checkmk.facility: ; touch $@ endif # Have xinetd installed first. check-mk-agent.install: xinetd.install endif # PCMS_PASS_NUM endif # FACILITY_CHECKMK_MK