mirror of
https://github.com/status-im/c-kzg-4844.git
synced 2025-02-03 22:05:17 +00:00
fd029a7d00
* Fix python bindings on macOS * Update workflow * Remove unnecessary Makefile vars * Add src dir to include dirs * Fix phony
15 lines
204 B
Makefile
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 $<
|