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