refactor: nim_status_go Makefile target doesn't depend on migrations
The nim_status_go target builds a pure shim (as a C archive) so it doesn't depend on migrations, which are only used in the pure/hybrid Nim implementations.
This commit is contained in:
parent
da2d335b4b
commit
cff5407764
2
Makefile
2
Makefile
|
@ -247,7 +247,7 @@ nim_status: $(NIMSTATUS)
|
||||||
|
|
||||||
NIMSTATUS_GO ?= build/nim_status_go.a
|
NIMSTATUS_GO ?= build/nim_status_go.a
|
||||||
|
|
||||||
$(NIMSTATUS_GO): $(SQLCIPHER) $(MIGRATIONS)
|
$(NIMSTATUS_GO): $(SQLCIPHER)
|
||||||
echo -e $(BUILD_MSG) "$@"
|
echo -e $(BUILD_MSG) "$@"
|
||||||
+ mkdir -p build
|
+ mkdir -p build
|
||||||
$(ENV_SCRIPT) nim c $(NIM_PARAMS) \
|
$(ENV_SCRIPT) nim c $(NIM_PARAMS) \
|
||||||
|
|
Loading…
Reference in New Issue