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