aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorgingerBill <bill@gingerbill.org>2021-05-27 14:55:12 +0100
committergingerBill <bill@gingerbill.org>2021-05-27 14:55:12 +0100
commit6a8a31824d0901f3c4ad2508f8049a09293b3ca4 (patch)
tree435a0949fe6a3e773ebd64e820b3560e9aecf127
parent275b8d2e8ad846a69421cf846ce21a08357145f4 (diff)
Minor change to Makefile
-rw-r--r--Makefile15
1 files changed, 4 insertions, 11 deletions
diff --git a/Makefile b/Makefile
index e8f37a600..caea92576 100644
--- a/Makefile
+++ b/Makefile
@@ -37,17 +37,10 @@ endif
all: debug demo
-demo:
- ./odin run examples/demo/demo.odin
-
-debug:
- $(CC) src/main.cpp $(DISABLED_WARNINGS) $(CFLAGS) -g $(LDFLAGS) -o odin
-
-release:
- $(CC) src/main.cpp $(DISABLED_WARNINGS) $(CFLAGS) -O3 -march=native $(LDFLAGS) -o odin
-
-nightly:
- $(CC) src/main.cpp $(DISABLED_WARNINGS) $(CFLAGS) -DNIGHTLY -O3 $(LDFLAGS) -o odin
+demo: ./odin run examples/demo/demo.odin
+debug: $(CC) src/main.cpp $(DISABLED_WARNINGS) $(CFLAGS) -g $(LDFLAGS) -o odin
+release: $(CC) src/main.cpp $(DISABLED_WARNINGS) $(CFLAGS) -O3 -march=native $(LDFLAGS) -o odin
+nightly: $(CC) src/main.cpp $(DISABLED_WARNINGS) $(CFLAGS) -DNIGHTLY -O3 $(LDFLAGS) -o odin