crankshaft/Makefile
Javier Goizueta 1ce0a206c7 Add a top-level Makefile
So we have single entry points to install/check everything
2016-02-19 11:57:13 +01:00

14 lines
226 B
Makefile

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