aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorSteven Rostedt <rostedt@goodmis.org>2009-12-22 11:57:58 -0500
committerSteven Rostedt <rostedt@goodmis.org>2009-12-22 11:57:58 -0500
commitc7ce78e0287ab90a316ecb3bbd9195e6ac6a5d4a (patch)
treeae878a558df2f6abd1c79c4fd8dfa7bd2c8bb29c /Makefile
parentf4c560d52052f253bb1bed498791bae93eb48098 (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--Makefile7
1 files changed, 4 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 7533dee..022d0a4 100644
--- a/Makefile
+++ b/Makefile
@@ -32,15 +32,16 @@ trace-cmd.o:: $(HEADERS) $(LIB_FILE)
32trace-util.o:: $(HEADERS) 32trace-util.o:: $(HEADERS)
33trace-ftrace.o:: $(HEADERS) 33trace-ftrace.o:: $(HEADERS)
34trace-input.o:: $(HEADERS) 34trace-input.o:: $(HEADERS)
35trace-view.o:: $(HEADERS) trace-view-store.h 35trace-view.o:: $(HEADERS) trace-view-store.h trace-view.h
36trace-view-store.o:: $(HEADERS) trace-view-store.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-filter.o:: $(HEADERS) 38trace-filter.o:: $(HEADERS)
38trace-graph.o:: $(HEADERS) 39trace-graph.o:: $(HEADERS)
39 40
40trace-cmd:: trace-cmd.o trace-read.o 41trace-cmd:: trace-cmd.o trace-read.o
41 $(CC) $^ -rdynamic -o $@ $(LIBS) 42 $(CC) $^ -rdynamic -o $@ $(LIBS)
42 43
43trace-view:: trace-view.o trace-view-store.o trace-filter.o 44trace-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
46trace-graph:: trace-graph.o trace-compat.o 47trace-graph:: trace-graph.o trace-compat.o