Merge branch 'drm-intel-fixes' of git://people.freedesktop.org/~danvet/drm-intel...
[firefly-linux-kernel-4.4.55.git] / 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