Skip to content
Snippets Groups Projects
Commit 502bd9e1 authored by Mark Haines's avatar Mark Haines
Browse files

Move comment to correct location

parent 2e986c51
Branches
Tags
No related merge requests found
#!/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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment