diff options
author | Lukas Larsson <[email protected]> | 2019-06-20 16:09:53 +0200 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2019-06-26 10:08:19 +0200 |
commit | ce2a4e4409a5b0da5522056c29df27ab0afe95ee (patch) | |
tree | 7ed042e5624f842e23337e8c1c4f7101853ceaac /lib/snmp | |
parent | 14944c65bada76cf246f885f7a146c7fd54cb3df (diff) | |
download | otp-ce2a4e4409a5b0da5522056c29df27ab0afe95ee.tar.gz otp-ce2a4e4409a5b0da5522056c29df27ab0afe95ee.tar.bz2 otp-ce2a4e4409a5b0da5522056c29df27ab0afe95ee.zip |
Add 'make dialyzer' target to top and apps
Diffstat (limited to 'lib/snmp')
-rw-r--r-- | lib/snmp/Makefile | 38 |
1 files changed, 1 insertions, 37 deletions
diff --git a/lib/snmp/Makefile b/lib/snmp/Makefile index 34ab309cfa..52debf1670 100644 --- a/lib/snmp/Makefile +++ b/lib/snmp/Makefile @@ -71,24 +71,6 @@ do_configure: configure configure: configure.in autoconf -.PHONY: info gclean - -info: - @echo "OS: $(OS)" - @echo "DOCB: $(DOCB)" - @echo "" - @echo "SNMP_VSN: $(SNMP_VSN)" - @echo "APP_VSN: $(APP_VSN)" - @echo "" - @echo "DIA_PLT: $(DIA_PLT)" - @echo "DIA_ANALYSIS: $(DIA_ANALYSIS)" - @echo "" - - -gclean: - git clean -fXd - - # ---------------------------------------------------- # Application (source) release targets # ---------------------------------------------------- @@ -130,24 +112,6 @@ tar: $(APP_TAR_FILE) $(APP_TAR_FILE): $(APP_DIR) (cd $(APP_RELEASE_DIR); gtar zcf $(APP_TAR_FILE) $(DIR_NAME)) -dclean: - rm -f $(DIA_PLT) - rm -f $(DIA_ANALYSIS) - -dialyzer_plt: $(DIA_PLT) - -$(DIA_PLT): - @echo "Building $(APPLICATION) plt file" - @dialyzer --build_plt \ - --output_plt $@ \ - -r ../$(APPLICATION)/ebin \ - --output $(DIA_ANALYSIS) \ - --verbose - -dialyzer: $(DIA_PLT) - @echo "Running dialyzer on $(APPLICATION)" - @dialyzer --plt $< \ - ../$(APPLICATION)/ebin \ - --verbose +DIA_PLT_APPS=runtime_tools crypto mnesia include $(ERL_TOP)/make/app_targets.mk |