crankshaft/Makefile

14 lines
226 B
Makefile
Raw Normal View History

EXT_DIR = pg
PYP_DIR = python
.PHONY: install
.PHONY: run_tests
install:
$(MAKE) -C $(PYP_DIR) install
$(MAKE) -C $(EXT_DIR) install
testinstalled:
$(MAKE) -C $(PYP_DIR) testinstalled
$(MAKE) -C $(EXT_DIR) installcheck