aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorSteven Rostedt <rostedt@goodmis.org>2009-12-22 12:16:07 -0500
committerSteven Rostedt <rostedt@goodmis.org>2009-12-22 12:16:07 -0500
commit2105698d2c25d440ca0fed1db978910428a593d9 (patch)
treef839779d1a7473ed4f7900ddd052a8288a5a5cf4 /Makefile
parentc7ce78e0287ab90a316ecb3bbd9195e6ac6a5d4a (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--Makefile5
1 files changed, 3 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 022d0a4..0d81f17 100644
--- a/Makefile
+++ b/Makefile
@@ -36,7 +36,8 @@ trace-view.o:: $(HEADERS) trace-view-store.h trace-view.h
36trace-view-store.o:: $(HEADERS) trace-view-store.h trace-view.h 36trace-view-store.o:: $(HEADERS) trace-view-store.h trace-view.h
37trace-view-main.o:: $(HEADERS) trace-view-store.h trace-view.h 37trace-view-main.o:: $(HEADERS) trace-view-store.h trace-view.h
38trace-filter.o:: $(HEADERS) 38trace-filter.o:: $(HEADERS)
39trace-graph.o:: $(HEADERS) 39trace-graph.o:: $(HEADERS) trace-graph.h
40trace-graph-main.o:: $(HEADERS) trace-graph.h
40 41
41trace-cmd:: trace-cmd.o trace-read.o 42trace-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
44trace-view:: trace-view-main.o trace-view.o trace-view-store.o trace-filter.o 45trace-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
47trace-graph:: trace-graph.o trace-compat.o 48trace-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