change traceread install lib path
[lttv.git] / ltt / branches / poly / lttv / lttv / Makefile.am
CommitLineData
d8f124de 1AM_CFLAGS = $(GLIB_CFLAGS)
6da3640c 2LIBS += $(POPT_LIBS) $(GLIB_LIBS) -lgobject-2.0 -L${top_srcdir}/ltt\
3 -llttvtraceread
d8f124de 4
065f8f41 5bin_PROGRAMS = lttv.real
6
7bin_SCRIPTS = lttv lttv-gui
8CLEANFILES = $(bin_SCRIPTS)
9EXTRA_DIST = lttv.sh lttv-gui.sh
10
11lttv: lttv.sh
12 rm -f lttv
13 echo "#!"$(BASH) > lttv
14 cat lttv.sh >> lttv
15 chmod ugo+x lttv
16
17lttv-gui: lttv-gui.sh
18 rm -f lttv-gui
19 echo "#!"$(BASH) > lttv-gui
20 cat lttv-gui.sh >> lttv-gui
21 chmod ugo+x lttv-gui
22
d8f124de 23
24INCLUDES = \
25 -DPACKAGE_PLUGIN_DIR=\""$(lttvplugindir)"\" \
26 @PACKAGE_CFLAGS@ \
27 $(DEFAULT_INCLUDES)
28
29libdir = ${lttvplugindir}
30
31lttvinclude_HEADERS = \
32 attribute.h\
33 hook.h\
34 iattribute.h\
35 lttv.h\
36 module.h\
37 option.h\
38 state.h\
39 stats.h\
40 tracecontext.h\
31452f49 41 traceset.h\
8e680509 42 filter.h\
43 print.h
d8f124de 44
31452f49 45#noinst_HEADERS = \
46# filter.h
47
065f8f41 48lttv_real_SOURCES = batchtest.c main.c module.c option.c \
d8f124de 49 hook.c attribute.c \
50 iattribute.c state.c stats.c \
8e680509 51 tracecontext.c traceset.c filter.c print.c
d8f124de 52
911b7a3c 53if LTTVSTATIC
065f8f41 54 lttv_real_LDFLAGS = -profile -static
911b7a3c 55endif
This page took 0.032995 seconds and 4 git commands to generate.