License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[linux-block.git] / tools / virtio / virtio-trace / Makefile
CommitLineData
b2441318 1# SPDX-License-Identifier: GPL-2.0
108fc825 2CC = gcc
5b8fa822 3CFLAGS = -O2 -Wall -pthread
108fc825
YY
4
5all: trace-agent
6
7.c.o:
5b8fa822 8 $(CC) $(CFLAGS) -c $^ -o $@
108fc825
YY
9
10trace-agent: trace-agent.o trace-agent-ctl.o trace-agent-rw.o
5b8fa822 11 $(CC) $(CFLAGS) -o $@ $^
108fc825
YY
12
13clean:
14 rm -f *.o trace-agent