# tickwatch # Author: Euxane TRAN-GIRARD # Licence: EUPL-1.2 tickwatch: $(wildcard *.nim) nim c \ ${NIM_FLAGS} \ -d:release \ -o:tickwatch \ main.nim .PHONY: clean clean: rm -f tickwatch .PHONY: check check: nim r \ ${NIM_FLAGS} \ -d:test \ main.nim .PHONY: check-loop check-loop: watchexec -cclear -r \ nim r \ ${NIM_FLAGS} \ -d:test \ main.nim .PHONY: install install: nim c \ ${NIM_FLAGS} \ -d:release \ -o:tickwatch \ --outdir=${DESTDIR}/bin \ main.nim