diff options
author | Micael Karlberg <[email protected]> | 2011-11-23 16:54:23 +0100 |
---|---|---|
committer | Micael Karlberg <[email protected]> | 2011-11-23 16:54:23 +0100 |
commit | 20733e3fd8b7ca6ec37585e17a88a8c9cf0d4410 (patch) | |
tree | 6dcf3b59dc4fdbf65e76f0f535bfcf5d2cf1c48e /lib | |
parent | 9e7449804168f701109a5fd6b2ebe6b43ecece44 (diff) | |
download | otp-20733e3fd8b7ca6ec37585e17a88a8c9cf0d4410.tar.gz otp-20733e3fd8b7ca6ec37585e17a88a8c9cf0d4410.tar.bz2 otp-20733e3fd8b7ca6ec37585e17a88a8c9cf0d4410.zip |
Added priv subdir (inets/priv/plt) as plt destination.
Diffstat (limited to 'lib')
-rw-r--r-- | lib/inets/Makefile | 14 | ||||
-rw-r--r-- | lib/inets/priv/plt/.gitignore | 2 |
2 files changed, 8 insertions, 8 deletions
diff --git a/lib/inets/Makefile b/lib/inets/Makefile index 1ad6ccf39f..1414a89621 100644 --- a/lib/inets/Makefile +++ b/lib/inets/Makefile @@ -31,9 +31,8 @@ VSN = $(INETS_VSN) SPECIAL_TARGETS = -INETS_DIA_PLT = ./priv/inets.plt -INETS_DIA_PLT_LOG = $(basename $(INETS_DIA_PLT)).dialyzer_plt_log -INETS_DIA_LOG = $(basename $(INETS_DIA_PLT)).dialyzer_log +INETS_DIA_PLT = ./priv/plt/inets.plt +INETS_DIA_ANALYSIS = $(basename $(INETS_DIA_PLT)).dialyzer_analysis # ---------------------------------------------------- @@ -50,8 +49,8 @@ info: @echo "INETS_VSN: $(INETS_VSN)" @echo "APP_VSN: $(APP_VSN)" @echo "" - @echo "INETS_DIA_PLT: $(INETS_DIA_PLT)" - @echo "INETS_DIA_LOG: $(INETS_DIA_LOG)" + @echo "INETS_DIA_PLT: $(INETS_DIA_PLT)" + @echo "INETS_DIA_ANALYSIS: $(INETS_DIA_ANALYSIS)" @echo "" gclean: @@ -59,8 +58,7 @@ gclean: dclean: rm -f $(INETS_DIA_PLT) - rm -f $(INETS_DIA_PLT_LOG) - rm -f $(INETS_DIA_LOG) + rm -f $(INETS_DIA_ANALYSIS) dialyzer_plt: $(INETS_DIA_PLT) @@ -69,7 +67,7 @@ $(INETS_DIA_PLT): @dialyzer --build_plt \ --output_plt $@ \ -r ../inets/ebin \ - -o $(INETS_DIA_PLT_LOG) \ + --output $(INETS_DIA_ANALYSIS) \ --verbose dialyzer: $(INETS_DIA_PLT) diff --git a/lib/inets/priv/plt/.gitignore b/lib/inets/priv/plt/.gitignore new file mode 100644 index 0000000000..2051b52d48 --- /dev/null +++ b/lib/inets/priv/plt/.gitignore @@ -0,0 +1,2 @@ +/*.plt +/*.dialyzer_analysis |