# $HeadURL$ $LastChangedRevision$ ifndef FACILITY_ROOT_MK FACILITY_ROOT_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.copy: $(shell encode /root/.bashrc).copy $(shell encode /root/.profile).copy $(shell encode /root/.vimrc).copy $(shell encode /root/.hushlogin).copy $(shell encode /root/.ssh/config).copy # The real Makefile else ifeq ($(PCMS_PASS_NUM),0) all.facility: root.facility root.facility: $(shell encode /root/.bashrc).copy $(shell encode /root/.profile).copy $(shell encode /root/.vimrc).copy $(shell encode /root/.hushlogin).copy $(shell encode /root/.ssh/config).copy touch $@ $(shell encode /root/.profile).copy: root-bin.fix root-bin.fix: mkdir -p ~/bin touch $@ endif # PCMS_PASS_NUM endif # FACILITY_ROOT_MK