wordle-algorithm/Makefile

10 lines
229 B
Makefile

printing ?= 0
.PHONY: default
.DEFAULT: default
default: solvedle.c
@clang -o bw -Ofast -Dprint=$(printing) $< && ./bw abcde.txt
.PHONY: test
test: solvedle.c
@clang -o bw -Ofast -Dprint=$(printing) $< && ./bw wordleWords.txt