1export MakeInc_cmd=${SRCROOT}/makedefs/MakeInc.cmd 2export MakeInc_def=${SRCROOT}/makedefs/MakeInc.def 3export MakeInc_rule=${SRCROOT}/makedefs/MakeInc.rule 4export MakeInc_dir=${SRCROOT}/makedefs/MakeInc.dir 5 6# These are System.framework headers 7 8include $(MakeInc_cmd) 9include $(MakeInc_def) 10 11ALL_HDRS = $(shell (cd $(SOURCE); echo *.h)) 12 13# INSTINC_SUBDIRS = Headers 14 15EXPINC_SUBDIRS = ${INSTINC_SUBDIRS} 16 17# INSTALL_MI_DIR = . 18 19INSTALL_SF_MI_LCL_LIST = $(ALL_HDRS) 20 21INSTALL_MI_GEN_LIST = $(GENERATED_HEADERS) 22 23include $(MakeInc_rule) 24include $(MakeInc_dir) 25