Browse Source

make - compile in debug

221V 1 week ago
parent
commit
808f905f9c
1 changed files with 4 additions and 1 deletions
  1. 4 1
      comp.mk

+ 4 - 1
comp.mk

@@ -3,6 +3,9 @@
 # todo clean
 
 c:
+	dub build --compiler ldc2
+
+c2:
 	dub build --compiler ldc2 --build release --force
 
 run:
@@ -12,5 +15,5 @@ run:
 
 default: run
 
-.PHONY: c run
+.PHONY: c c2 run