wordle-algorithm/Makefile

10 lines
229 B
Makefile
Raw Normal View History

2022-09-03 13:58:20 -04:00
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