aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/dialyzer.mk
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2015-06-14 10:38:32 +0200
committerLoïc Hoguin <[email protected]>2015-06-14 10:38:32 +0200
commit752d2a69fe93523aa0b400f30e096f39e1b1eb27 (patch)
treef20f67e54a92ecab1d435d8e109479ce63bb95f6 /plugins/dialyzer.mk
parent553442b0f140f963fff9c07ac2ec8f4770096483 (diff)
downloaderlang.mk-752d2a69fe93523aa0b400f30e096f39e1b1eb27.tar.gz
erlang.mk-752d2a69fe93523aa0b400f30e096f39e1b1eb27.tar.bz2
erlang.mk-752d2a69fe93523aa0b400f30e096f39e1b1eb27.zip
Generate the .app file directly from the Makefile
This removes the need for a .app.src file entirely. The PROJECT_* variables and the OTP_DEPS variable allow us to specify everything we need. REL_DEPS and BUILD_DEPS will be added later on to allow users to cleanly specify those without adding them to the .app file.
Diffstat (limited to 'plugins/dialyzer.mk')
-rw-r--r--plugins/dialyzer.mk2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/dialyzer.mk b/plugins/dialyzer.mk
index 23d16ee..c432d5b 100644
--- a/plugins/dialyzer.mk
+++ b/plugins/dialyzer.mk
@@ -28,7 +28,7 @@ help::
# Plugin-specific targets.
$(DIALYZER_PLT): deps app
- @dialyzer --build_plt --apps erts kernel stdlib $(PLT_APPS) $(ALL_DEPS_DIRS)
+ @dialyzer --build_plt --apps erts kernel stdlib $(PLT_APPS) $(OTP_DEPS) $(ALL_DEPS_DIRS)
plt: $(DIALYZER_PLT)