Makefile 220 Bytes
Newer Older
1
PYTHON_EXECUTABLE := $(shell if python3 -c ""; then echo "python3"; else echo "python"; fi)
2

Miodrag Milanovic committed
3
all::
4

5 6
run-test.mk: ../generate.py
	@$(PYTHON_EXECUTABLE) ../generate.py > run-test.mk
7

Miodrag Milanovic committed
8 9
include run-test.mk

10
.PHONY: all clean