- Clean up various nim compiler warnings.
... except ObservableStores. https://forum.nim-lang.org/t/6442#39738
- Update documentation for Netdata v1.23's "exporting" module.
- TCP connections to netdata where dropped by default. Expose this
behavior as a toggle, and change the default to leave the child
process (and the tcp socket) open.
- Bump to v0.3.0.
25 lines
521 B
Makefile
25 lines
521 B
Makefile
|
|
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
|
|
|