8d02d71bbeac1d6925d9060c2d3d022f5e7c996c
[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.028191 seconds and 3 git commands to generate.