Fix java build
[lttng-ust.git] / Makefile.am
CommitLineData
693515ee 1ACLOCAL_AMFLAGS = -I config
89edbbc3
PMF
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.
2b6f8df9 8SUBDIRS = snprintf liblttng-ust-comm libringbuffer libust include doc tests \
40930dac 9 libustjava
15612a0f
MD
10
11#temporarily disabled
8d8a24c8 12# . libustinstr-malloc libustfork
e14a34e0 13
3c6eae02 14EXTRA_DIST = libust.ldscript.in libust-initializer.c libust-initializer.h
25123621
JB
15
16ldscriptsdir = $(libdir)
17ldscripts_DATA = libust.so libust-initializer.o
18
7b92d97d 19CLEANFILES = $(ldscripts_DATA) ./tests/libust-initializer.Po
25123621 20
25123621 21libust.so: libust.ldscript.in
7adb228f 22 $(SED) -e $(if $(LIBFORMAT),"s@\@FORMAT\@@$(LIBFORMAT)@","s@.*\@FORMAT\@.*@@") < $< > $@
25123621 23
ec96d08c
PMF
24# It is very important to compile the initializer with PIC otherwise we
25# may get obscure errors when linking to shared libraries.
25123621 26libust-initializer.o: libust-initializer.c
3c6eae02 27 $(CC) $(CFLAGS) -fno-strict-aliasing -fPIC -c -I$(top_srcdir)/include -I$(top_srcdir) -o $@ $<
4cf459a7
YB
28
29pkgconfigdir = $(libdir)/pkgconfig
e26c8207 30pkgconfig_DATA = ust.pc
This page took 0.025847 seconds and 4 git commands to generate.