simplified makefile

This commit is contained in:
bronku 2025-11-23 13:50:16 +01:00
parent 24f1e590ab
commit 700d6d96ac
2 changed files with 1 additions and 201 deletions

View file

@ -20,16 +20,4 @@ build:
clean:
rm -rf build
generate: build/run/1.in
# actually should depend on build/main and build/run, but that will trigger it every recompile, and i don't need that
build/run/1.in:
$(TARGET) -g 100000 -o build/run/1.in
run: $(TARGET) build/run/1.in
$(TARGET) -i build/run/1.in -d build/run/tmp -o build/run/1.out
run_alt: $(TARGET) build/run/1.in
$(TARGET) -i build/run/1.in -d build/run/tmp -n 11 -b 100
.PHONY: clean run generate run_alt all
.PHONY: clean