projects
/
platform
/
kernel
/
linux-starfive.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
Merge tag 'asoc-fix-v6.6-merge-window' of https://git.kernel.org/pub/scm/linux/kernel...
[platform/kernel/linux-starfive.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