diff options
author | Steven Rostedt <rostedt@goodmis.org> | 2009-12-22 11:57:58 -0500 |
---|---|---|
committer | Steven Rostedt <rostedt@goodmis.org> | 2009-12-22 11:57:58 -0500 |
commit | c7ce78e0287ab90a316ecb3bbd9195e6ac6a5d4a (patch) | |
tree | ae878a558df2f6abd1c79c4fd8dfa7bd2c8bb29c /Makefile | |
parent | f4c560d52052f253bb1bed498791bae93eb48098 (diff) |
trace-view: Move windowing of trace-view into trace-view-main.c
In order to make the trace-view list be used in other applications
separate out the main window into trace-view-main.c and make an
API that another application can use a trace view with.
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -32,15 +32,16 @@ trace-cmd.o:: $(HEADERS) $(LIB_FILE) | |||
32 | trace-util.o:: $(HEADERS) | 32 | trace-util.o:: $(HEADERS) |
33 | trace-ftrace.o:: $(HEADERS) | 33 | trace-ftrace.o:: $(HEADERS) |
34 | trace-input.o:: $(HEADERS) | 34 | trace-input.o:: $(HEADERS) |
35 | trace-view.o:: $(HEADERS) trace-view-store.h | 35 | trace-view.o:: $(HEADERS) trace-view-store.h trace-view.h |
36 | trace-view-store.o:: $(HEADERS) trace-view-store.h | 36 | trace-view-store.o:: $(HEADERS) trace-view-store.h trace-view.h |
37 | trace-view-main.o:: $(HEADERS) trace-view-store.h trace-view.h | ||
37 | trace-filter.o:: $(HEADERS) | 38 | trace-filter.o:: $(HEADERS) |
38 | trace-graph.o:: $(HEADERS) | 39 | trace-graph.o:: $(HEADERS) |
39 | 40 | ||
40 | trace-cmd:: trace-cmd.o trace-read.o | 41 | trace-cmd:: trace-cmd.o trace-read.o |
41 | $(CC) $^ -rdynamic -o $@ $(LIBS) | 42 | $(CC) $^ -rdynamic -o $@ $(LIBS) |
42 | 43 | ||
43 | trace-view:: trace-view.o trace-view-store.o trace-filter.o | 44 | trace-view:: trace-view-main.o trace-view.o trace-view-store.o trace-filter.o |
44 | $(CC) $^ -rdynamic -o $@ $(CONFIG_LIBS) $(LIBS) | 45 | $(CC) $^ -rdynamic -o $@ $(CONFIG_LIBS) $(LIBS) |
45 | 46 | ||
46 | trace-graph:: trace-graph.o trace-compat.o | 47 | trace-graph:: trace-graph.o trace-compat.o |