Add a couple more exceptions to .gitignore
[packages] / Local.rules.mk
1 ifeq (${XEMACS_PACKAGES_BASE},)
2 ___ := $(error XEMACS_PACKAGES_BASE not defined??)
3 endif
4
5 ___ := $(shell [ -f ${XEMACS_PACKAGES_BASE}/Local.rules ] && echo exists)
6
7 Local.rules : ${XEMACS_PACKAGES_BASE}/Local.rules
8 .PHONY : Local.rules
9
10 ${XEMACS_PACKAGES_BASE}/Local.rules : ${XEMACS_PACKAGES_BASE}/Local.rules.template
11 ifneq (${___},exists)
12         command := $(shell cp -p $< $@)
13         $(error You must edit "$(notdir $@)" and customize it for this build host.)
14 else
15         $(error "$(notdir $<)" has been updated or is newer than "$(notdir $@)".  Merge the changes into your "$(notdir $@)".)
16 endif