Add TRACEPOINT_EVENT java instrumentation wrapper
[lttng-ust.git] / Makefile.am
1 ACLOCAL_AMFLAGS = -I config
2
3 # The order here is tricky. SUBDIRS applies both to compilation and
4 # installation. Programs depending on the libs must be built after
5 # libust and '.' (that contains the linker script). However, '.'
6 # must be installed after libust so it can overwrite libust.so with
7 # the linker script.
8 SUBDIRS = snprintf liblttng-ust-comm libringbuffer libust include doc tests \
9 java
10
11 #temporarily disabled
12 # . libustinstr-malloc libustfork
13
14 EXTRA_DIST = libust.ldscript.in libust-initializer.c libust-initializer.h
15
16 ldscriptsdir = $(libdir)
17 ldscripts_DATA = libust.so libust-initializer.o
18
19 CLEANFILES = $(ldscripts_DATA) ./tests/libust-initializer.Po
20
21 libust.so: libust.ldscript.in
22 $(SED) -e $(if $(LIBFORMAT),"s@\@FORMAT\@@$(LIBFORMAT)@","s@.*\@FORMAT\@.*@@") < $< > $@
23
24 # It is very important to compile the initializer with PIC otherwise we
25 # may get obscure errors when linking to shared libraries.
26 libust-initializer.o: libust-initializer.c
27 $(CC) $(CFLAGS) -fno-strict-aliasing -fPIC -c -I$(top_srcdir)/include -I$(top_srcdir) -o $@ $<
28
29 pkgconfigdir = $(libdir)/pkgconfig
30 pkgconfig_DATA = ust.pc
This page took 0.031814 seconds and 5 git commands to generate.