about summary refs log tree commit diff stats
path: root/makefile
diff options
context:
space:
mode:
authorbptato <nincsnevem662@gmail.com>2021-08-05 17:16:42 +0200
committerbptato <nincsnevem662@gmail.com>2021-08-05 17:16:42 +0200
commit087f830528b41b00d0bf7a501f7b0472f75ffb18 (patch)
treeae0096738b46ff1710f1116268ebdebb6924a68b /makefile
parent69a0f081e6eefdd6a52b0da6586100349b1a6ea8 (diff)
downloadchawan-087f830528b41b00d0bf7a501f7b0472f75ffb18.tar.gz
Remove static radix tree and small/full builds
Static radix tree was a hack to begin with and I don't want to deal with
it anymore. I might consider small/full builds later on but let's be
honest here, it's premature optimization.
Diffstat (limited to 'makefile')
-rw-r--r--makefile8
1 files changed, 3 insertions, 5 deletions
diff --git a/makefile b/makefile
index 3b038c16..1686ac64 100644
--- a/makefile
+++ b/makefile
@@ -3,12 +3,10 @@ FLAGS = -d:ssl -o:twt
 FILES = src/main.nim
 
 debug:
-	$(NIMC) $(FLAGS) -d:small $(FILES)
-small:
-	$(NIMC) $(FLAGS) -d:danger $(FILES)
+	$(NIMC) $(FLAGS) $(FILES)
 release:
-	$(NIMC) $(FLAGS) -d:release -d:full $(FILES)
+	$(NIMC) $(FLAGS) -d:release $(FILES)
 danger:
-	$(NIMC) $(FLAGS) -d:danger -d:full $(FILES)
+	$(NIMC) $(FLAGS) -d:danger $(FILES)
 clean:
 	rm ./twt