Makefile
author Mahlon E. Smith <mahlon@martini.nu>
Mon, 08 Oct 2018 12:50:06 -0700
changeset 5 e34aabaefe44
parent 4 2f4e88604125
child 10 d63cce6d1a09
permissions -rw-r--r--
Fix nimble file for distribution.


FILES = src/stomp.nim
CACHE = .cache

default: development

development: ${FILES}
	nim --debugInfo --assertions:on --linedir:on -d:ssl --define:debug --nimcache:${CACHE} c ${FILES}
	@mv src/stomp .

autobuild:
	# find . -depth 1 -name \*.nim | entr -cp make
	echo ${FILES} | entr -c make

debugger: ${FILES}
	nim --debugger:on --nimcache:${CACHE} c ${FILES}

release: ${FILES}
	nim -d:release --opt:speed --nimcache:${CACHE} c ${FILES}
	@mv src/stomp .

docs:
	nim doc ${FILES}
	#nim buildIndex ${FILES}

clean:
	cat .hgignore | xargs rm -rf