3d57eb5b |
1 | |
3d57eb5b |
2 | CC=gcc |
15146922 |
3 | INCLUDE_DIR=/usr/include |
3a4541a5 |
4 | LIB_DIR?=/usr/lib |
06b6cf12 |
5 | RANLIB=ranlib |
3d57eb5b |
6 | |
3a4541a5 |
7 | LTT_CFLAGS=-I. -O2 -L. |
976db1b3 |
8 | |
9 | #For testing lib ltt-usertrace-fast |
10 | #CFLAGS+=-DLTT_SUBBUF_SIZE_CPU=134217728 |
11 | #CFLAGS+=-DLTT_NULL_OUTPUT_TEST |
12 | |
13 | all: libs samples |
14 | |
1a7c8c19 |
15 | #SAMPLE PROGRAMS |
976db1b3 |
16 | |
1a7c8c19 |
17 | samples: sample sample-highspeed sample-printf \ |
a31c6b45 |
18 | sample-instrument-fct sample-thread-slow sample-thread-fast sample-thread-brand |
3d57eb5b |
19 | |
20 | sample: sample.c ltt-facility-loader-user_generic.c |
3a4541a5 |
21 | $(CC) $(LTT_CFLAGS) $(CFLAGS) -o $@ $^ |
972a52cf |
22 | |
a31c6b45 |
23 | sample-thread-brand: sample-thread-brand.c ltt-facility-loader-user_generic.c |
24 | $(CC) $(LTT_CFLAGS) $(CFLAGS) -o $@ $^ |
25 | |
972a52cf |
26 | sample-highspeed: sample-highspeed.c ltt-facility-loader-user_generic.c |
3a4541a5 |
27 | $(CC) $(LTT_CFLAGS) $(CFLAGS) -lltt-usertrace-fast -o $@ $^ |
3d57eb5b |
28 | |
e36efdc5 |
29 | sample-printf: sample-printf.c ltt-facility-loader-user_generic.c |
3a4541a5 |
30 | $(CC) $(LTT_CFLAGS) $(CFLAGS) -o $@ $^ |
15146922 |
31 | |
06b6cf12 |
32 | sample-instrument-fct: sample-instrument-fct.c |
3a4541a5 |
33 | $(CC) $(LTT_CFLAGS) $(CFLAGS) -g -finstrument-functions -lltt-instrument-functions -o $@ $^ |
20f73bc0 |
34 | |
1a7c8c19 |
35 | sample-thread-slow: sample-thread-slow.c ltt-facility-loader-user_generic.c |
3a4541a5 |
36 | $(CC) $(LTT_CFLAGS) $(CFLAGS) -lpthread -o $@ $^ |
1a7c8c19 |
37 | |
38 | sample-thread-fast: sample-thread-fast.c ltt-facility-loader-user_generic.c |
3a4541a5 |
39 | $(CC) $(LTT_CFLAGS) $(CFLAGS) -lpthread -lltt-usertrace-fast -o $@ $^ |
1a7c8c19 |
40 | |
41 | |
42 | #LIBRAIRIES |
43 | |
44 | libs: libltt-instrument-functions.a libltt-instrument-functions.so.0 \ |
45 | libltt-usertrace-fast.a libltt-usertrace-fast.so.0 |
46 | |
47 | libltt-usertrace-fast.a: ltt-usertrace-fast.o |
976db1b3 |
48 | @rm -f libltt-usertrace-fast.a |
49 | $(AR) rc $@ $^ |
50 | $(RANLIB) $@ |
51 | |
1a7c8c19 |
52 | libltt-usertrace-fast.so.0: ltt-usertrace-fast.o |
976db1b3 |
53 | @rm -f libltt-usertrace-fast.so libltt-usertrace-fast.so.0 |
3a4541a5 |
54 | $(CC) $(LTT_CFLAGS) $(CFLAGS) -lpthread -shared -Wl,-soname,libltt-usertrace-fast.so -o $@ $^ |
976db1b3 |
55 | ln -s libltt-usertrace-fast.so.0 libltt-usertrace-fast.so |
56 | |
57 | libltt-instrument-functions.a: ltt-instrument-functions.o ltt-facility-loader-user_generic.o ltt-usertrace-fast.o |
06b6cf12 |
58 | @rm -f libltt-instrument-functions.a |
59 | $(AR) rc $@ $^ |
60 | $(RANLIB) $@ |
61 | |
976db1b3 |
62 | libltt-instrument-functions.so.0: ltt-instrument-functions.o ltt-facility-loader-user_generic.o ltt-usertrace-fast.o |
06b6cf12 |
63 | @rm -f libltt-instrument-functions.so libltt-instrument-functions.so.0 |
3a4541a5 |
64 | $(CC) $(LTT_CFLAGS) $(CFLAGS) -lpthread -shared -Wl,-soname,libltt-instrument-functions.so -o $@ $^ |
06b6cf12 |
65 | ln -s libltt-instrument-functions.so.0 libltt-instrument-functions.so |
e90c7b86 |
66 | |
3a4541a5 |
67 | %.o: %.c |
68 | $(CC) $(LTT_CFLAGS) $(CFLAGS) -c -o $@ $+ |
e36efdc5 |
69 | |
3a4541a5 |
70 | .PHONY : clean install libs install_libs install_headers samples |
71 | |
72 | install_headers: |
15146922 |
73 | if [ ! -e "$(INCLUDE_DIR)/ltt" ] ; then mkdir $(INCLUDE_DIR)/ltt ; fi |
74 | cp -f ltt/*.h $(INCLUDE_DIR)/ltt |
3a4541a5 |
75 | |
76 | install_libs: |
b09f3215 |
77 | cp -df libltt-instrument-functions.so* libltt-instrument-functions.a $(LIB_DIR) |
976db1b3 |
78 | cp -df libltt-usertrace-fast.so* libltt-usertrace-fast.a $(LIB_DIR) |
3d57eb5b |
79 | |
3a4541a5 |
80 | install: install_headers libs install_libs |
81 | |
3d57eb5b |
82 | clean: |
403a4bcd |
83 | rm -fr *.o *~ sample-thread sample sample-highspeed sample-printf sample-instrument-fct libltt-instrument-functions.so* libltt-instrument-functions.a libltt-usertrace-fast.a libltt-usertrace-fast.so* sample-thread-slow sample-thread-fast |
3d57eb5b |
84 | |