Add the rt linux 4.1.3-rt3 as base
[kvmfornfv.git] / kernel / tools / virtio / virtio-trace / Makefile
1 CC = gcc
2 CFLAGS = -O2 -Wall -pthread
3
4 all: trace-agent
5
6 .c.o:
7         $(CC) $(CFLAGS) -c $^ -o $@
8
9 trace-agent: trace-agent.o trace-agent-ctl.o trace-agent-rw.o
10         $(CC) $(CFLAGS) -o $@ $^
11
12 clean:
13         rm -f *.o trace-agent