1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
.PHONY: mostlyclean-local-check
SCRPTS := uninstalled-env theme-d-compile theme-d-link \
run-theme-d-program run-split-theme-d-program run-theme-d-program-m \
get-theme-d-config-var setup-theme-d-test-env setup-theme-d-bootstrap-env \
compute-theme-d-pcode-deps compute-theme-d-module-deps compute-theme-d-program-deps
$(SCRPTS): %: %.in
sed -e 's|@_abs_top_dir@|$(abs_top_dir)|g' $< > $@
chmod 755 $@
all-local: $(SCRPTS)
mostlyclean-local: mostlyclean-local-check
mostlyclean-local-check:
-rm $(SCRPTS)
|