10 lines
210 B
Plaintext
10 lines
210 B
Plaintext
|
|
PY_FILES = $(PY:%=$(INSTALL_LOCATION)/python/%)
|
|
|
|
$(PY_FILES) : $(INSTALL_LOCATION)/python/%: ../%
|
|
@[ -d $(dir $@) ] || install -d $(dir $@)
|
|
@echo "Install PROTO $@"
|
|
install -m 644 $< $@
|
|
|
|
build: $(PY_FILES)
|