Merge branch 'dummy-ctl-inactive' of git://git.alsa-project.org/alsa-kprivate into...
[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