2022-11-01 14:24:02 +00:00
|
|
|
.PHONY: all
|
2023-05-10 09:05:55 +00:00
|
|
|
all: install test
|
2022-11-01 14:24:02 +00:00
|
|
|
|
2023-02-07 22:13:54 +00:00
|
|
|
.PHONY: install
|
2024-04-16 23:14:38 +00:00
|
|
|
install: ../../setup.py ckzg.c
|
|
|
|
python3 ../../setup.py install --force
|
2022-11-01 14:24:02 +00:00
|
|
|
|
2023-02-07 22:13:54 +00:00
|
|
|
.PHONY: test
|
|
|
|
test: tests.py
|
2023-01-16 20:05:23 +00:00
|
|
|
python3 $<
|