diff options
author | bptato <nincsnevem662@gmail.com> | 2021-11-15 19:48:05 +0100 |
---|---|---|
committer | bptato <nincsnevem662@gmail.com> | 2021-11-15 19:48:05 +0100 |
commit | 0dc4172725322bdfd66353051cae1b929be52679 (patch) | |
tree | 3167a56aba602a663d027da71fbee1c57fd969d3 /makefile | |
parent | c391881cb73ba265388dd9834b399d57633d0b36 (diff) | |
download | chawan-0dc4172725322bdfd66353051cae1b929be52679.tar.gz |
Re-enable SSL
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 4 |
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: |