# $HeadURL$ $LastChangedRevision$ ifndef FACILITY_PRINT_MK FACILITY_PRINT_MK = 1 # In pass #1: load recipe generators # In pass #0: load generated recipes include method-copy.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: cups-client.install all.copy: $(shell encode /etc/cups/client.conf).copy # The real Makefile else ifeq ($(PCMS_PASS_NUM),0) all.facility: print.facility ifeq ($(PRINT_CLIENT_FLAG),true) print.facility: cups-client.install $(shell encode /etc/cups/client.conf).copy touch $@ else print.facility: touch $@ endif endif # PCMS_PASS_NUM endif # FACILITY_PRINT_MK