ced8f6fbeed2ae76fb6a4fa15b063a0efee76c65
[lttv.git] / usertrace-fast / Makefile
1
2 RANLIB=ranlib
3
4 CC=gcc
5
6 all: test sample-instrument-fct libltt-instrument-functions.a libltt-instrument-functions.so.0
7
8 test: test.c ltt-usertrace-fast.c
9 $(CC) $(CFLAGS) -lpthread -o $@ $^
10
11
12 sample-instrument-fct: sample-instrument-fct.c
13 $(CC) $(CFLAGS) -L. -g -finstrument-functions -lltt-instrument-functions -o $@ $^
14
15 libltt-instrument-functions.a: ltt-instrument-functions.o ltt-facility-loader-user_generic.o
16 @rm -f libltt-instrument-functions.a
17 $(AR) rc $@ $^
18 $(RANLIB) $@
19
20 libltt-instrument-functions.so.0: ltt-instrument-functions.o ltt-facility-loader-user_generic.o
21 @rm -f libltt-instrument-functions.so libltt-instrument-functions.so.0
22 $(CC) $(CFLAGS) -shared -Wl,-soname,libltt-instrument-functions.so -o $@ $^
23 ln -s libltt-instrument-functions.so.0 libltt-instrument-functions.so
24
25 install:
26 if [ ! -e "$(INCLUDE_DIR)/ltt" ] ; then mkdir $(INCLUDE_DIR)/ltt ; fi
27 cp -f ltt/*.h $(INCLUDE_DIR)/ltt
28 cp -df libltt-instrument-functions.so* libltt-instrument-functions.a $(LIB_DIR)
29
30 .PHONY : clean install
31
32 clean:
33 rm -fr *.o *~ test sample-instrument-fct libltt-instrument-functions.a libltt-instrument-functions.so*
This page took 0.029661 seconds and 4 git commands to generate.