netdata-timescale-relay/Makefile

26 lines
559 B
Makefile
Raw Normal View History

2018-02-12 12:26:16 -08:00
FILES = netdata_tsrelay.nim
default: development
debug: ${FILES}
nim --assertions:on --threads:on --nimcache:.cache c ${FILES}
2018-02-12 12:26:16 -08:00
development: ${FILES}
# can use gdb with this...
nim --debugInfo --threads:on --linedir:on -d:testing -d:nimTypeNames --nimcache:.cache c ${FILES}
2018-02-12 12:26:16 -08:00
debugger: ${FILES}
nim --debugger:on --threads:on --nimcache:.cache c ${FILES}
release: ${FILES}
nim -d:release --opt:speed --parallelBuild:0 --threads:on --nimcache:.cache c ${FILES}
2018-02-12 12:26:16 -08:00
docs:
nim doc ${FILES}
#nim buildIndex ${FILES}
clean:
cat .hgignore | xargs rm -rf