running `make` should build exec (#356)
This commit is contained in:
parent
6cbf3ab044
commit
de3d97db1e
11
Makefile
11
Makefile
|
@ -44,7 +44,11 @@ GIT_SUBMODULE_UPDATE := git submodule update --init --recursive
|
||||||
else # "variables.mk" was included. Business as usual until the end of this file.
|
else # "variables.mk" was included. Business as usual until the end of this file.
|
||||||
|
|
||||||
# default target, because it's the first one that doesn't start with '.'
|
# default target, because it's the first one that doesn't start with '.'
|
||||||
all: | test
|
|
||||||
|
# Builds the codex binary
|
||||||
|
all: | build deps
|
||||||
|
echo -e $(BUILD_MSG) "build/$@" && \
|
||||||
|
$(ENV_SCRIPT) nim codex $(NIM_PARAMS) codex.nims
|
||||||
|
|
||||||
# must be included after the default target
|
# must be included after the default target
|
||||||
-include $(BUILD_SYSTEM_DIR)/makefiles/targets.mk
|
-include $(BUILD_SYSTEM_DIR)/makefiles/targets.mk
|
||||||
|
@ -96,11 +100,6 @@ testAll: | build deps
|
||||||
echo -e $(BUILD_MSG) "build/$@" && \
|
echo -e $(BUILD_MSG) "build/$@" && \
|
||||||
$(ENV_SCRIPT) nim testAll $(NIM_PARAMS) codex.nims
|
$(ENV_SCRIPT) nim testAll $(NIM_PARAMS) codex.nims
|
||||||
|
|
||||||
# Builds the codex binary
|
|
||||||
exec: | build deps
|
|
||||||
echo -e $(BUILD_MSG) "build/$@" && \
|
|
||||||
$(ENV_SCRIPT) nim codex $(NIM_PARAMS) codex.nims
|
|
||||||
|
|
||||||
# symlink
|
# symlink
|
||||||
codex.nims:
|
codex.nims:
|
||||||
ln -s codex.nimble $@
|
ln -s codex.nimble $@
|
||||||
|
|
Loading…
Reference in New Issue