Linux-libre 5.7.5-gnu
[librecmc/linux-libre.git] / tools / virtio / virtio-trace / Makefile
1 # SPDX-License-Identifier: GPL-2.0
2 CC = gcc
3 CFLAGS = -O2 -Wall -pthread
4
5 all: trace-agent
6
7 .c.o:
8         $(CC) $(CFLAGS) -c $^ -o $@
9
10 trace-agent: trace-agent.o trace-agent-ctl.o trace-agent-rw.o
11         $(CC) $(CFLAGS) -o $@ $^
12
13 clean:
14         rm -f *.o trace-agent