3d57eb5b |
1 | |
3d57eb5b |
2 | CC=gcc |
15146922 |
3 | INCLUDE_DIR=/usr/include |
20f73bc0 |
4 | LIB_DIR=/usr/lib |
06b6cf12 |
5 | RANLIB=ranlib |
3d57eb5b |
6 | |
06b6cf12 |
7 | all: libltt-instrument-functions.a libltt-instrument-functions.so.0 sample-thread sample sample-highspeed sample-printf sample-instrument-fct |
3d57eb5b |
8 | |
9 | sample-thread: sample-thread.c ltt-facility-loader-user_generic.c |
15146922 |
10 | $(CC) $(CFLAGS) -lpthread -o $@ $^ |
3d57eb5b |
11 | |
12 | sample: sample.c ltt-facility-loader-user_generic.c |
15146922 |
13 | $(CC) $(CFLAGS) -o $@ $^ |
972a52cf |
14 | |
15 | sample-highspeed: sample-highspeed.c ltt-facility-loader-user_generic.c |
15146922 |
16 | $(CC) $(CFLAGS) -o $@ $^ |
3d57eb5b |
17 | |
e36efdc5 |
18 | sample-printf: sample-printf.c ltt-facility-loader-user_generic.c |
15146922 |
19 | $(CC) $(CFLAGS) -o $@ $^ |
20 | |
06b6cf12 |
21 | sample-instrument-fct: sample-instrument-fct.c |
22 | $(CC) $(CFLAGS) -L. -g -finstrument-functions -lltt-instrument-functions -o $@ $^ |
20f73bc0 |
23 | |
06b6cf12 |
24 | libltt-instrument-functions.a: ltt-instrument-functions.o ltt-facility-loader-user_generic.o |
25 | @rm -f libltt-instrument-functions.a |
26 | $(AR) rc $@ $^ |
27 | $(RANLIB) $@ |
28 | |
29 | libltt-instrument-functions.so.0: ltt-instrument-functions.o ltt-facility-loader-user_generic.o |
30 | @rm -f libltt-instrument-functions.so libltt-instrument-functions.so.0 |
31 | $(CC) $(CFLAGS) -shared -Wl,-soname,libltt-instrument-functions.so -o $@ $^ |
32 | ln -s libltt-instrument-functions.so.0 libltt-instrument-functions.so |
e90c7b86 |
33 | |
15146922 |
34 | .PHONY : clean install |
e36efdc5 |
35 | |
15146922 |
36 | install: |
37 | if [ ! -e "$(INCLUDE_DIR)/ltt" ] ; then mkdir $(INCLUDE_DIR)/ltt ; fi |
38 | cp -f ltt/*.h $(INCLUDE_DIR)/ltt |
b09f3215 |
39 | cp -df libltt-instrument-functions.so* libltt-instrument-functions.a $(LIB_DIR) |
3d57eb5b |
40 | |
41 | clean: |
06b6cf12 |
42 | rm -fr *.o *~ sample-thread sample sample-highspeed sample-printf sample-instrument-fct libltt-instrument-functions.so* libltt-instrument-functions.a |
3d57eb5b |
43 | |