Linux-libre 4.13.7-gnu
[librecmc/linux-libre.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