Files
pyDevSup/configure/RULES_PY
Michael Davidsaver 01331ed3f5 update Makefile
2013-12-09 00:33:28 -05:00

17 lines
266 B
Plaintext

ifneq ($(T_A),)
ifndef PY_VER
$(error Must include CONFIG_PY)
endif
PY_FILES += $(PY:%=$(PY_INSTALL_DIR)/%)
$(PY_FILES) : $(PY_INSTALL_DIR)/%: ../%
@[ -d $(dir $@) ] || install -d $(dir $@)
@echo "Install PY $@"
install -m 644 $< $@
build: $(PY_FILES)
endif