c-kzg-4844/bindings/python/Makefile

18 lines
283 B
Makefile
Raw Normal View History

2022-11-01 14:24:02 +00:00
.PHONY: all
all: install test ecc_test
2022-11-01 14:24:02 +00:00
../../src/c_kzg_4844.o:
make -C../../src c_kzg_4844.o
.PHONY: install
install: setup.py ckzg.c ../../src/c_kzg_4844.o
python3 setup.py install
2022-11-01 14:24:02 +00:00
.PHONY: test
test: tests.py
python3 $<
2022-09-19 09:54:07 +00:00
.PHONY: ecc_test
ecc_test: py_ecc_tests.py
python3 $<