Skip to content
This repository has been archived by the owner on Jul 1, 2020. It is now read-only.

Commit

Permalink
[ Makefile ] fixed variable setting.
Browse files Browse the repository at this point in the history
  • Loading branch information
jonaprieto committed Mar 31, 2017
1 parent c533ffd commit e9f0f55
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,61 +28,61 @@ solutions: $(TSTP_BASIC) \
$(TSTP_BICOND) \
$(TSTP_NEG)
@find . -type f -name "cnf*" -delete
@echo "ATP: $(ATP)"
@echo "ATP: ${ATP}"

.PHONY: basic
basic: $(TSTP_BASIC)
@find . -type f -name "cnf*" -delete
@echo "ATP: $(ATP)"
@echo "ATP: ${ATP}"

.PHONY: conjunction
conjunction: $(TSTP_CONJ)
@find . -type f -name "cnf*" -delete
@echo "ATP: $(ATP)"
@echo "ATP: ${ATP}"

.PHONY: disjunction
disjunction: $(TSTP_DISJ)
@find . -type f -name "cnf*" -delete
@echo "ATP: $(ATP)"
@echo "ATP: ${ATP}"

.PHONY: implication
implication: $(TSTP_IMPL)
@find . -type f -name "cnf*" -delete
@echo "ATP: $(ATP)"
@echo "ATP: ${ATP}"

.PHONY: biconditional
biconditional: $(TSTP_BICOND)
@find . -type f -name "cnf*" -delete
@echo "ATP: $(ATP)"
@echo "ATP: ${ATP}"

.PHONY: negation
negation: $(TSTP_NEG)
@find . -type f -name "cnf*" -delete
@echo "ATP: $(ATP)"
@echo "ATP: ${ATP}"

problems/basic/%.tstp: problems/basic/%.tptp
@echo $@
@$(ATP) $< > $@
@${ATP} $< > $@

problems/conjunction/%.tstp: problems/conjunction/%.tptp
@echo $@
@$(ATP) $< > $@
@${ATP} $< > $@

problems/disjunction/%.tstp: problems/disjunction/%.tptp
@echo $@
@$(ATP) $< > $@
@${ATP} $< > $@

problems/implication/%.tstp: problems/implication/%.tptp
@echo $@
@$(ATP) $< > $@
@${ATP} $< > $@

problems/biconditional/%.tstp: problems/biconditional/%.tptp
@echo $@
@$(ATP) $< > $@
@${ATP} $< > $@

problems/negation/%.tstp: problems/negation/%.tptp
@echo $@
@$(ATP) $< > $@
@${ATP} $< > $@

clean:
find . -type f -name "*.aux" -delete
Expand Down

0 comments on commit e9f0f55

Please sign in to comment.