diff options
author | Steven Rostedt <srostedt@redhat.com> | 2010-01-13 17:59:06 -0500 |
---|---|---|
committer | Steven Rostedt <rostedt@goodmis.org> | 2010-01-13 17:59:06 -0500 |
commit | e4c17e5b30010727e9ea521f15eb44605f82efa4 (patch) | |
tree | a6b8e1e7d6d033e67d544793afd1a5f045bc8d0e | |
parent | 16d8767a3242db3404f6d991140201c58d5b371a (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-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -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 | ||
178 | all: $(CMD_TARGETS) | 178 | all: $(CMD_TARGETS) show_gui_make |
179 | 179 | ||
180 | gui: $(CMD_TARGETS) | 180 | gui: $(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) |
289 | endif | 289 | endif |
290 | 290 | ||
291 | .PHONY: force | 291 | show_gui_make: |
292 | @echo "*** to build the gui, type \"make gui\" ***" | ||
293 | |||
294 | .PHONY: force show_gui_make | ||
292 | force: | 295 | force: |
293 | 296 | ||
294 | TAGS: force | 297 | TAGS: force |