Makefile
author Mahlon E. Smith <mahlon@martini.nu>
Mon, 08 Oct 2018 10:19:07 -0700
changeset 9 c109bf5f2aa4
parent 0 755c3645e3dc
permissions -rw-r--r--
Re-org project directory for use with nimble.


FILES = src/tnetstring.nim

default: development

debug: ${FILES}
	nim --assertions:on --nimcache:.cache c ${FILES}

development: ${FILES}
	# can use gdb with this...
	nim -r --debugInfo --linedir:on --define:testing --nimcache:.cache c ${FILES}

debugger: ${FILES}
	nim --debugger:on --nimcache:.cache c ${FILES}

release: ${FILES}
	nim -d:release --opt:speed --nimcache:.cache c ${FILES}

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

clean:
	cat .hgignore | xargs rm -rf