diff options
author | Steven Rostedt <rostedt@goodmis.org> | 2009-12-22 12:16:07 -0500 |
---|---|---|
committer | Steven Rostedt <rostedt@goodmis.org> | 2009-12-22 12:16:07 -0500 |
commit | 2105698d2c25d440ca0fed1db978910428a593d9 (patch) | |
tree | f839779d1a7473ed4f7900ddd052a8288a5a5cf4 /Makefile | |
parent | c7ce78e0287ab90a316ecb3bbd9195e6ac6a5d4a (diff) |
trace-graph: Move windowing into trace-graph-main.c
In order to be able to use the trace-graph in other applications
we separate out the creation of the graph from the windowing.
Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
@@ -36,7 +36,8 @@ trace-view.o:: $(HEADERS) trace-view-store.h trace-view.h | |||
36 | trace-view-store.o:: $(HEADERS) trace-view-store.h trace-view.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-view-main.o:: $(HEADERS) trace-view-store.h trace-view.h |
38 | trace-filter.o:: $(HEADERS) | 38 | trace-filter.o:: $(HEADERS) |
39 | trace-graph.o:: $(HEADERS) | 39 | trace-graph.o:: $(HEADERS) trace-graph.h |
40 | trace-graph-main.o:: $(HEADERS) trace-graph.h | ||
40 | 41 | ||
41 | trace-cmd:: trace-cmd.o trace-read.o | 42 | trace-cmd:: trace-cmd.o trace-read.o |
42 | $(CC) $^ -rdynamic -o $@ $(LIBS) | 43 | $(CC) $^ -rdynamic -o $@ $(LIBS) |
@@ -44,7 +45,7 @@ trace-cmd:: trace-cmd.o trace-read.o | |||
44 | trace-view:: trace-view-main.o trace-view.o trace-view-store.o trace-filter.o | 45 | trace-view:: trace-view-main.o trace-view.o trace-view-store.o trace-filter.o |
45 | $(CC) $^ -rdynamic -o $@ $(CONFIG_LIBS) $(LIBS) | 46 | $(CC) $^ -rdynamic -o $@ $(CONFIG_LIBS) $(LIBS) |
46 | 47 | ||
47 | trace-graph:: trace-graph.o trace-compat.o | 48 | trace-graph:: trace-graph-main.o trace-graph.o trace-compat.o |
48 | $(CC) $^ -rdynamic -o $@ $(CONFIG_LIBS) $(LIBS) | 49 | $(CC) $^ -rdynamic -o $@ $(CONFIG_LIBS) $(LIBS) |
49 | 50 | ||
50 | .PHONY: gtk_depends | 51 | .PHONY: gtk_depends |