diff options
author | Steven Rostedt <srostedt@redhat.com> | 2010-02-05 11:39:34 -0500 |
---|---|---|
committer | Steven Rostedt <rostedt@goodmis.org> | 2010-02-05 11:39:34 -0500 |
commit | fd1b2cdfca907b638684c8c006846bcc07b458a8 (patch) | |
tree | 86db7d26c7a5c73d2a74b7b0c9e555f023be7309 | |
parent | e85b5f74e0bc8300ad1213e320f071f10be4f724 (diff) |
build: Add trace-view-main.o and trace-graph-main.o to dependencies
The all_objs did not include trace-view-main.o or trace-graph-main.o
so these objects did not get rebuilt when files that they depend on
were changed.
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -157,8 +157,8 @@ PLUGIN_OBJS = plugin_hrtimer.o plugin_kmem.o plugin_sched_switch.o \ | |||
157 | 157 | ||
158 | PLUGINS := $(PLUGIN_OBJS:.o=.so) | 158 | PLUGINS := $(PLUGIN_OBJS:.o=.so) |
159 | 159 | ||
160 | ALL_OBJS = $(TRACE_CMD_OBJS) $(KERNEL_SHARK_OBJS) $(TRACE_VIEW_OBJS) $(TRACE_GRAPH_OBJS) \ | 160 | ALL_OBJS = $(TRACE_CMD_OBJS) $(KERNEL_SHARK_OBJS) $(TRACE_VIEW_MAIN_OBJS) \ |
161 | $(TCMD_LIB_OBJS) $(PLUGIN_OBJS) | 161 | $(TRACE_GRAPH_MAIN_OBJS) $(TCMD_LIB_OBJS) $(PLUGIN_OBJS) |
162 | 162 | ||
163 | CMD_TARGETS = tc_version.h libparsevent.a $(LIB_FILE) trace-cmd $(PLUGINS) | 163 | CMD_TARGETS = tc_version.h libparsevent.a $(LIB_FILE) trace-cmd $(PLUGINS) |
164 | 164 | ||