about summary refs log tree commit diff stats
path: root/makefile
diff options
context:
space:
mode:
authorbptato <nincsnevem662@gmail.com>2021-08-07 12:16:29 +0200
committerbptato <nincsnevem662@gmail.com>2021-08-07 12:16:29 +0200
commitfa4560f63e38886b2b7541642b9aa1656dc40508 (patch)
tree7177fd845926e92b655306e08f4b5a8fc5156b4d /makefile
parentab963e4efe0871a6bdedf2f56fcfb9ed15636d12 (diff)
downloadchawan-fa4560f63e38886b2b7541642b9aa1656dc40508.tar.gz
Reorganize imports
Diffstat (limited to 'makefile')
-rw-r--r--makefile6
1 files changed, 3 insertions, 3 deletions
diff --git a/makefile b/makefile
index 1686ac64..92ab5048 100644
--- a/makefile
+++ b/makefile
@@ -1,12 +1,12 @@
 NIMC = nim compile
-FLAGS = -d:ssl -o:twt
+FLAGS = -d:ssl -o:twt -p:src/ -p:. --import:utils/eprint
 FILES = src/main.nim
 
 debug:
 	$(NIMC) $(FLAGS) $(FILES)
 release:
-	$(NIMC) $(FLAGS) -d:release $(FILES)
+	$(NIMC) $(FLAGS) -d:release -d:strip $(FILES)
 danger:
-	$(NIMC) $(FLAGS) -d:danger $(FILES)
+	$(NIMC) $(FLAGS) -d:danger -d:strip $(FILES)
 clean:
 	rm ./twt