aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--core/erlc.mk4
-rw-r--r--erlang.mk6
-rw-r--r--plugins/relx.mk2
3 files changed, 6 insertions, 6 deletions
diff --git a/core/erlc.mk b/core/erlc.mk
index 8d720aa..01bd6e0 100644
--- a/core/erlc.mk
+++ b/core/erlc.mk
@@ -75,11 +75,11 @@ ebin/$(PROJECT).app:: $(shell find mibs -type f -name \*.mib)
endif
ebin/$(PROJECT).app:: $(shell find src -type f -name \*.erl) \
- $(shell find src -type f -name \*.core)
+ $(shell find src -type f -name \*.core) | deps
$(if $(strip $?),$(call compile_erl,$?))
ebin/$(PROJECT).app:: $(shell find src -type f -name \*.xrl) \
- $(shell find src -type f -name \*.yrl)
+ $(shell find src -type f -name \*.yrl) | deps
$(if $(strip $?),$(call compile_xyrl,$?))
endif
diff --git a/erlang.mk b/erlang.mk
index 5aa1ac2..cbd1416 100644
--- a/erlang.mk
+++ b/erlang.mk
@@ -278,11 +278,11 @@ ebin/$(PROJECT).app:: $(shell find mibs -type f -name \*.mib)
endif
ebin/$(PROJECT).app:: $(shell find src -type f -name \*.erl) \
- $(shell find src -type f -name \*.core)
+ $(shell find src -type f -name \*.core) | deps
$(if $(strip $?),$(call compile_erl,$?))
ebin/$(PROJECT).app:: $(shell find src -type f -name \*.xrl) \
- $(shell find src -type f -name \*.yrl)
+ $(shell find src -type f -name \*.yrl) | deps
$(if $(strip $?),$(call compile_xyrl,$?))
endif
@@ -1124,7 +1124,7 @@ endef
$(RELX):
@$(call relx_fetch)
-relx-rel: $(RELX)
+relx-rel: $(RELX) | deps app
@$(RELX) -c $(RELX_CONFIG) $(RELX_OPTS)
distclean-relx-rel:
diff --git a/plugins/relx.mk b/plugins/relx.mk
index 8b66277..9e6f556 100644
--- a/plugins/relx.mk
+++ b/plugins/relx.mk
@@ -38,7 +38,7 @@ endef
$(RELX):
@$(call relx_fetch)
-relx-rel: $(RELX)
+relx-rel: $(RELX) | deps app
@$(RELX) -c $(RELX_CONFIG) $(RELX_OPTS)
distclean-relx-rel: