about summary refs log tree commit diff stats
path: root/Makefile
diff options
context:
space:
mode:
authorbptato <nincsnevem662@gmail.com>2021-03-13 13:40:23 +0100
committerbptato <nincsnevem662@gmail.com>2021-03-13 13:40:23 +0100
commit97f19da347b27a4d12f54784fa8bcbf304aa4fea (patch)
treec4bd5c601f0f8774402e4182bde8af6f5bcd5c3b /Makefile
parent6084e104d5c3868196c9e2d3748c6627cf983470 (diff)
downloadchawan-97f19da347b27a4d12f54784fa8bcbf304aa4fea.tar.gz
Moved stuff etc
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 74872b8a..569cb2b5 100644
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,9 @@
 debug:
-	nim compile -d:ssl -o:twt main.nim
+	nim compile -d:ssl -o:twt src/main.nim
 release:
-	nim compile -d:release -d:ssl -o:twt main.nim
+	nim compile -d:release -d:ssl -o:twt src/main.nim
 release_opt:
-	nim compile -d:danger -d:ssl -o:twt main.nim
+	nim compile -d:danger -d:ssl -o:twt src/main.nim
 clean:
-	rm ./twt ./dtwt ./twt_opt
+	rm ./twt
 all: debug release release_opt