Justin Traglia fd029a7d00
Fix python bindings on macOS (#117)
* Fix python bindings on macOS

* Update workflow

* Remove unnecessary Makefile vars

* Add src dir to include dirs

* Fix phony
2023-02-07 22:13:54 +00:00

15 lines
204 B
Makefile

.PHONY: all
all: install test ecc_test
.PHONY: install
install: setup.py ckzg.c
python3 setup.py install
.PHONY: test
test: tests.py
python3 $<
.PHONY: ecc_test
ecc_test: py_ecc_tests.py
python3 $<