advent-of-code/2020/makefile

18 lines
228 B
Makefile
Raw Normal View History

2020-12-03 22:49:54 -06:00
.PHONY: default run install build build-release build-tiny
default: run
2020-12-02 21:33:18 -06:00
run:
nimble run
2020-12-03 22:49:54 -06:00
build:
nimble build
build-release:
nimble build -d:release
build-tiny:
nimble build -d:release --opt:size
install:
nimble install