mirror of
https://github.com/status-im/c-kzg-4844.git
synced 2025-01-09 09:52:03 +00:00
d0201ca2c4
* Remove pyecc tests * Remove pyecc tests in CI too
14 lines
218 B
Makefile
14 lines
218 B
Makefile
.PHONY: all
|
|
all: install test
|
|
|
|
../../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
|
|
|
|
.PHONY: test
|
|
test: tests.py
|
|
python3 $<
|