--- a/Makefile Fri Mar 25 15:59:20 2016 -0700
+++ b/Makefile Mon Oct 08 12:11:54 2018 -0700
@@ -1,11 +1,12 @@
-FILES = stomp.nim
+FILES = src/stomp.nim
CACHE = .cache
default: development
development: ${FILES}
nim --debugInfo --assertions:on --linedir:on -d:ssl --define:debug --nimcache:${CACHE} c ${FILES}
+ @mv src/stomp .
autobuild:
# find . -depth 1 -name \*.nim | entr -cp make
@@ -16,6 +17,7 @@
release: ${FILES}
nim -d:release --opt:speed --nimcache:${CACHE} c ${FILES}
+ @mv src/stomp .
docs:
nim doc ${FILES}