mirror of
https://github.com/status-im/c-kzg-4844.git
synced 2025-02-15 03:26:25 +00:00
11 lines
159 B
Makefile
11 lines
159 B
Makefile
.PHONY: all
|
|
all: install test
|
|
|
|
.PHONY: install
|
|
install: ../../setup.py ckzg.c
|
|
python3 ../../setup.py install --force
|
|
|
|
.PHONY: test
|
|
test: tests.py
|
|
python3 $<
|