compute-constrained-bayes/src/makefile

21 lines
665 B
Makefile
Raw Normal View History

2023-05-23 22:29:41 +00:00
SHELL := /bin/bash ## <= required to use time
VERBOSE=--verbosity:0
build: compute_constrained_bayes.nim
nim c $(VERBOSE) compute_constrained_bayes.nim
2023-05-23 22:29:41 +00:00
deps:
nimble install print@1.0.2
run: compute_constrained_bayes
./compute_constrained_bayes $(VERBOSE)
2023-05-23 22:29:41 +00:00
examine: compute_constrained_bayes
nim c $(VERBOSE) compute_constrained_bayes.nim && time ./compute_constrained_bayes $(VERBOSE) && echo
nim c $(VERBOSE) -d:release compute_constrained_bayes.nim && time ./compute_constrained_bayes $(VERBOSE) && echo
nim c $(VERBOSE) -d:danger compute_constrained_bayes.nim && time ./compute_constrained_bayes $(VERBOSE)
2023-05-23 22:29:41 +00:00
time:
time make && echo && time make run