Makefile
author Mahlon E. Smith <mahlon@martini.nu>
Thu, 05 Aug 2021 10:48:20 -0700
changeset 25 970ca83c849b
parent 19 1f09cfb560e0
child 23 89ba1d73b232
permissions -rw-r--r--
Fix link to Timescale JSON docs.


FILES = netdata_tsrelay.nim

default: release

autobuild:
	find . -type f -iname \*.nim | entr -c make development

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

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

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

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

clean:
	cat .hgignore | xargs rm -rf