Add a module to compute various statistics
[lttv.git] / ltt / branches / poly / lttv / Makefile.am
1 AM_CFLAGS = $(GLIB_CFLAGS)
2 LIBS += $(GLIB_LIBS) -lgobject-2.0 -L$(top_srcdir)/ltt -ltraceread
3 #LIBS += $(GLIB_LIBS) -lgobject-2.0 -lltt
4
5 bin_PROGRAMS = lttv
6
7 #AM_CPPFLAGS = \
8 # -I$(top_srcdir)/include
9 #INCLUDES=$(top_srcdir)/include
10
11 lttv_SOURCES = main.c module.c option.c hook.c attribute.c \
12 iattribute.c processTrace.c state.c stats.c traceset.c
13
14 libdir = ${lttvplugindir}
15
16 lib_LTLIBRARIES = libtextDump.la libbatchAnalysis.la
17 libtextDump_la_LDFLAGS = -module
18 libtextDump_la_SOURCES = textDump.c
19 libbatchAnalysis_la_LDFLAGS = -module
20 libbatchAnalysis_la_SOURCES = batchAnalysis.c
21
22
23 # WARNING : must be done at the end, so modules can dynamically link themselves
24 # to libraries compiled here but not installed in the system.
25 SUBDIRS = modules
26
This page took 0.03215 seconds and 4 git commands to generate.