aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteven Rostedt <srostedt@redhat.com>2010-01-13 17:59:06 -0500
committerSteven Rostedt <rostedt@goodmis.org>2010-01-13 17:59:06 -0500
commite4c17e5b30010727e9ea521f15eb44605f82efa4 (patch)
treea6b8e1e7d6d033e67d544793afd1a5f045bc8d0e
parent16d8767a3242db3404f6d991140201c58d5b371a (diff)
build: Add instructions to build gui in default make
Add the output: *** to build the gui, type "make gui" *** to the end of the build when "make" is executed. This will let the user know they need to do more to build the gui code. Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
-rw-r--r--Makefile7
1 files changed, 5 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index d2dd7ed..88bbd30 100644
--- a/Makefile
+++ b/Makefile
@@ -175,7 +175,7 @@ TARGETS = $(CMD_TARGETS) $(GUI_TARGETS)
175# If you want kernelshark, then do: make gui 175# If you want kernelshark, then do: make gui
176### 176###
177 177
178all: $(CMD_TARGETS) 178all: $(CMD_TARGETS) show_gui_make
179 179
180gui: $(CMD_TARGETS) 180gui: $(CMD_TARGETS)
181 $(Q)$(MAKE) BUILDGUI=1 all_gui 181 $(Q)$(MAKE) BUILDGUI=1 all_gui
@@ -288,7 +288,10 @@ ifneq ($(dep_includes),)
288 include $(dep_includes) 288 include $(dep_includes)
289endif 289endif
290 290
291.PHONY: force 291show_gui_make:
292 @echo "*** to build the gui, type \"make gui\" ***"
293
294.PHONY: force show_gui_make
292force: 295force:
293 296
294TAGS: force 297TAGS: force