aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMark Haines <mjark@negativecurvature.net>2016-05-23 16:31:33 +0100
committerMark Haines <mjark@negativecurvature.net>2016-05-23 16:31:33 +0100
commit502bd9e10ea07a92c187963a4f987ab6c3b92163 (patch)
treedbfae22e6e4bba1e92a778f0f00f1a6f89bb3591 /Makefile
parent2e986c512e55d62935d496b5c6adac65421e7b69 (diff)
Move comment to correct location
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 29fd076..e05ea57 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,5 @@
#!/usr/bin/make -f
-# Make sure that the build directory exists.
-# We can't check the build directory into git because it is empty.
BUILD_DIR := build
RELEASE_OPTIMIZE_FLAGS ?= -g -O3
DEBUG_OPTIMIZE_FLAGS ?= -g -O0
@@ -64,6 +62,8 @@ $(JS_TARGET): LDFLAGS += $(JS_OPTIMIZE_FLAGS)
lib: $(RELEASE_TARGET)
.PHONY: lib
+# Make sure that the build directory exists.
+# We can't check the build directory into git because it is empty.
makedirs:
mkdir -p $(BUILD_DIR)/release $(BUILD_DIR)/debug $(BUILD_DIR)/javascript $(BUILD_DIR)/tests
.PHONY: makedirs