Makefile
author Mahlon E. Smith <mahlon@martini.nu>
Sat, 12 Dec 2020 21:46:39 -0800
changeset 22 4250addd706f
parent 19 1f09cfb560e0
child 23 89ba1d73b232
permissions -rw-r--r--
Support storing Netdata host labels, if they are passed to this json backend.


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