mirror of
https://github.com/status-im/c-kzg-4844.git
synced 2025-01-20 15:09:02 +00:00
67e5904a04
Also improves setup.py and moves it to the repo's root directory.
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 $<
|