diff options
author | Lukas Larsson <[email protected]> | 2017-10-23 13:08:17 +0200 |
---|---|---|
committer | Lukas Larsson <[email protected]> | 2017-10-31 13:46:05 +0100 |
commit | 1a1fe80bb3b3bfc6705d4a581f109d0a8e5a8c2e (patch) | |
tree | adcba75241e7cc9ca2fe4ac4828b714546545e60 /make | |
parent | 202d62c473e00fd066a70c85ba1d5c26ef2607a1 (diff) | |
download | otp-1a1fe80bb3b3bfc6705d4a581f109d0a8e5a8c2e.tar.gz otp-1a1fe80bb3b3bfc6705d4a581f109d0a8e5a8c2e.tar.bz2 otp-1a1fe80bb3b3bfc6705d4a581f109d0a8e5a8c2e.zip |
Add toplevel xmllint make target
Diffstat (limited to 'make')
-rw-r--r-- | make/otp_release_targets.mk | 4 | ||||
-rw-r--r-- | make/otp_subdir.mk | 2 | ||||
-rw-r--r-- | make/run_make.mk | 6 |
3 files changed, 6 insertions, 6 deletions
diff --git a/make/otp_release_targets.mk b/make/otp_release_targets.mk index 13b54645ad..ff8f881493 100644 --- a/make/otp_release_targets.mk +++ b/make/otp_release_targets.mk @@ -94,6 +94,8 @@ $(HTMLDIR)/users_guide.html: $(XML_FILES) # ------------------------------------------------------------------------ # The following targets just exist in the documentation directory # ------------------------------------------------------------------------ +.PHONY: xmllint + ifneq ($(XML_FILES),) # ---------------------------------------------------- @@ -143,6 +145,8 @@ local_copy_of_topdefs: $(DOCGEN)/priv/js/flipmenu/flip_static.gif \ $(DOCGEN)/priv/js/flipmenu/flipmenu.js $(HTMLDIR)/js/flipmenu +else +xmllint: endif # ---------------------------------------------------- diff --git a/make/otp_subdir.mk b/make/otp_subdir.mk index 5734970298..19c744955c 100644 --- a/make/otp_subdir.mk +++ b/make/otp_subdir.mk @@ -25,7 +25,7 @@ # # Targets that don't affect documentation directories # -opt debug lcnt release docs release_docs tests release_tests clean depend valgrind static_lib: +opt debug lcnt release docs release_docs tests release_tests clean depend valgrind static_lib xmllint: @set -e ; \ app_pwd=`pwd` ; \ if test -f vsn.mk; then \ diff --git a/make/run_make.mk b/make/run_make.mk index 2591a37cad..bcbbf53f7d 100644 --- a/make/run_make.mk +++ b/make/run_make.mk @@ -38,9 +38,5 @@ plain smp frag smp_frag: $(make_verbose)$(MAKE) -f $(TARGET)/Makefile FLAVOR=$@ clean generate depend docs release release_spec release_docs release_docs_spec \ - tests release_tests release_tests_spec static_lib: + tests release_tests release_tests_spec static_lib xmllint: $(make_verbose)$(MAKE) -f $(TARGET)/Makefile $@ - - - - |