Skip to content

Commit 66e3bb4

Browse files
committed
Add debug info
1 parent dc0ba3f commit 66e3bb4

File tree

3 files changed

+12
-0
lines changed

3 files changed

+12
-0
lines changed

tools/make/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ include $(TOOLS_MAKE_LIB_DIR)/licenses/Makefile
4343
include $(TOOLS_MAKE_LIB_DIR)/lint/Makefile
4444
include $(TOOLS_MAKE_LIB_DIR)/ls/Makefile
4545
include $(TOOLS_MAKE_LIB_DIR)/markdown-equations/Makefile
46+
include $(TOOLS_MAKE_LIB_DIR)/node/Makefile
4647
include $(TOOLS_MAKE_LIB_DIR)/notes/Makefile
4748
include $(TOOLS_MAKE_LIB_DIR)/repl/Makefile
4849
include $(TOOLS_MAKE_LIB_DIR)/stats/Makefile

tools/make/lib/deps/boost.mk

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,9 @@ deps-extract-boost: $(DEPS_BOOST_BUILD_OUT)
9999
# This target tests a Boost installation.
100100

101101
deps-test-boost: $(DEPS_BOOST_TEST_INSTALL_OUT)
102+
$(QUIET) echo 'Running tests...' >&2
102103
$(QUIET) echo 1 2 3 | $(DEPS_BOOST_TEST_INSTALL_OUT)
104+
$(QUIET) echo 'Success.' >&2
103105
$(QUIET) echo ''
104106

105107
.PHONY: deps-test-boost

tools/make/lib/deps/deps.mk

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,15 @@ $(DEPS_BUILD_DIR):
3434
$(QUIET) $(MKDIR_RECURSIVE) $(DEPS_BUILD_DIR)
3535

3636

37+
# Install vendor dependencies.
38+
#
39+
# This target installs vendor dependencies:
40+
41+
install-deps: deps-install-boost
42+
43+
.PHONY: install-deps
44+
45+
3746
# Clean vendor dependencies.
3847
#
3948
# This target removes vendor dependencies.

0 commit comments

Comments
 (0)