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

12 lines
103 B
Makefile

PHP := php
SRC = sleeptest.php
OUT = sleeptest.php
.PHONY: clean
all: $(OUT)
$(OUT): $(SRC)
clean: