time-to-botec/wip/nim/makefile
2023-05-21 01:34:17 -04:00

12 lines
243 B
Makefile

SHELL := /bin/bash ## <= required to use time
VERBOSE=--verbosity:0
build: samples.nim
nim c $(VERBOSE) samples.nim
run: samples
./samples $(VERBOSE)
examine: samples
nim c $(VERBOSE) -d:release samples.nim && time ./samples $(VERBOSE)