make make great again

This commit is contained in:
2025-09-17 12:55:04 +02:00
parent 9f4966909f
commit 6242a0b9d9

View File

@@ -1,6 +1,15 @@
build: main.oz
ozc -c main.oz
SRC = main.oz
.PHONY: all run clean
all: run
%.ozf: %.oz
ozc -c $<
run: $(SRC)f
ozengine $(SRC)f
clean:
rm -f *.ozf
run: build
echo "make: built successfully"
ozengine main.ozf