Store graph callbacks in a structure
[lttv.git] / lttv / lttv / Makefile.am
1 SUBDIRS= sync
2
3 AM_CFLAGS= $(PACKAGE_CFLAGS)
4 LDADD = $(POPT_LIBS) $(M_LIBS) ${top_builddir}/ltt/liblttvtraceread.la
5
6 bin_PROGRAMS = lttv.real
7
8 if BUILD_LTTV_GUI
9 bin_SCRIPTS = lttv lttv-gui
10 else
11 bin_SCRIPTS = lttv
12 endif
13
14 CLEANFILES = $(bin_SCRIPTS)
15
16 if BUILD_LTTV_GUI
17 EXTRA_DIST = lttv.sh lttv-gui.sh
18 else
19 EXTRA_DIST = lttv.sh
20 endif
21
22 lttv: lttv.sh
23 rm -f lttv
24 echo "#!"$(BASH) > lttv
25 cat $(srcdir)/lttv.sh >> lttv
26 chmod ugo+x lttv
27
28 lttv-gui: lttv-gui.sh
29 rm -f lttv-gui
30 echo "#!"$(BASH) > lttv-gui
31 cat $(srcdir)/lttv-gui.sh >> lttv-gui
32 chmod ugo+x lttv-gui
33
34
35 INCLUDES = \
36 -DPACKAGE_PLUGIN_DIR=\""$(lttvplugindir)"\" \
37 $(DEFAULT_INCLUDES)
38
39 libdir = ${lttvplugindir}
40
41 #noinst_HEADERS = \
42 # filter.h
43
44 lttv_real_SOURCES = \
45 batchtest.c\
46 main.c\
47 module.c\
48 option.c\
49 hook.c\
50 attribute.c\
51 iattribute.c\
52 state.c\
53 stats.c\
54 tracecontext.c\
55 traceset.c\
56 filter.c\
57 print.c\
58 sync/sync_chain_lttv.c\
59 sync/graph_functions.c\
60 sync/data_structures.c\
61 sync/event_processing_lttng_common.c\
62 sync/event_processing_lttng_standard.c\
63 sync/event_processing_lttng_null.c\
64 sync/event_matching_broadcast.c\
65 sync/event_matching_distributor.c\
66 sync/event_matching_tcp.c\
67 sync/event_analysis_chull.c\
68 sync/event_analysis_eval.c\
69 sync/event_analysis_linreg.c
70
71 lttvinclude_HEADERS = \
72 attribute.h\
73 hook.h\
74 iattribute.h\
75 lttv.h\
76 module.h\
77 option.h\
78 state.h\
79 stats.h\
80 tracecontext.h\
81 traceset.h\
82 filter.h\
83 print.h
84
85 #man_MANS = lttv.1
86 #EXTRA_DIST = lttv.1
87
88 #install-data-hook:
89 # cd $(DESTDIR)$(mandir)/man1 && \
90 # $(LN_S) -f lttv.1 lttv-gui.1 \
91 # $(LN_S) -f lttv.1 lttv.real.1
92
93 lttv_real_LDFLAGS = -export-dynamic
94
95 if LTTVSTATIC
96 lttv_real_LDFLAGS += -static
97 endif
98
This page took 0.030879 seconds and 4 git commands to generate.