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