langcmp/python/Makefile
2023-08-24 08:53:49 +02:00

12 lines
107 B
Makefile

PYTHON := python
SRC = sleeptest.py
OUT = sleeptest.py
.PHONY: clean
all: $(OUT)
$(OUT): $(SRC)
clean: