add high speed blocking test
[lttv.git] / usertrace-generic / Makefile
1
2
3 CC=gcc
4
5 all: sample-thread sample sample-highspeed
6
7 sample-thread: sample-thread.c ltt-facility-loader-user_generic.c
8 $(CC) $(CFLAGS) -I. -lpthread -o $@ $^
9
10 sample: sample.c ltt-facility-loader-user_generic.c
11 $(CC) $(CFLAGS) -I. -o $@ $^
12
13 sample-highspeed: sample-highspeed.c ltt-facility-loader-user_generic.c
14 $(CC) $(CFLAGS) -I. -o $@ $^
15
16 .PHONY : clean
17
18 clean:
19 rm -fr *.o *~ sample-thread sample
20
This page took 0.0292 seconds and 4 git commands to generate.