Files
TDT4165/assignment5/Makefile
2025-11-05 06:36:57 +01:00

10 lines
138 B
Makefile

PROLOG = swipl
.PHONY: run clean
all: run/main.pl
run/%:
@$(PROLOG) -f $* -t halt -q
consult/%:
@$(PROLOG) -f $* -q
clean:
rm -f *.qlf