aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorkitsunyan2018-04-18 21:45:24 +0000
committerkitsunyan2018-04-18 21:45:24 +0000
commit4bcf8fc92fb7c3258befc71077af0cdf83b8431a (patch)
tree6a8b64686df112bf45b8661e2249b03ba9db3dd9
parent5460261110d5766e25fa086c5f52193070c60583 (diff)
Add missing makefile dependencies
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 254fb38..9fbe6b7 100644
--- a/Makefile
+++ b/Makefile
@@ -77,7 +77,7 @@ all: \
${TARGETS} \
${TARGETS_NODIST}
-completion/bash: completion/bash.in
+completion/bash: completion/make.sh completion/bash.in
@echo "GEN: $@"
@(cd completion && ./make.sh)
@@ -102,7 +102,7 @@ lib/bisect: lib/bisect.nim
--nimcache:"${NIM_CACHE_DIR}/bisect" \
-o:"$@" "$<"
-src/pakku: src/main.nim
+src/pakku: src/main.nim $(shell find src -name \*.nim)
@echo "NIM: $@"
@nim c ${NIM_OPTIONS} \
--nimcache:"${NIM_CACHE_DIR}/main" \