about summary refs log tree commit diff stats
path: root/makefile
diff options
context:
space:
mode:
authorbptato <nincsnevem662@gmail.com>2021-11-15 19:48:05 +0100
committerbptato <nincsnevem662@gmail.com>2021-11-15 19:48:05 +0100
commit0dc4172725322bdfd66353051cae1b929be52679 (patch)
tree3167a56aba602a663d027da71fbee1c57fd969d3 /makefile
parentc391881cb73ba265388dd9834b399d57633d0b36 (diff)
downloadchawan-0dc4172725322bdfd66353051cae1b929be52679.tar.gz
Re-enable SSL
Diffstat (limited to 'makefile')
-rw-r--r--makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/makefile b/makefile
index 456e9e0d..48382521 100644
--- a/makefile
+++ b/makefile
@@ -1,11 +1,11 @@
 NIMC = nim c
-FLAGS = -o:twt
+FLAGS = -d:ssl -o:twt
 FILES = src/main.nim
 
 debug:
 	$(NIMC) $(FLAGS) $(FILES)
 release:
-	$(NIMC) $(FLAGS) -d:release -d:strip -d:ssl -d:lto $(FILES)
+	$(NIMC) $(FLAGS) -d:release -d:strip -d:lto $(FILES)
 install:
 	cp twt /usr/local/bin/
 clean: