Florian Idelberger 67e5904a04
Add source distribution for Python package (#415)
Also improves setup.py and moves it to the repo's root directory.
2024-04-16 18:14:38 -05:00

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 $<