brintos

brintos / linux-shallow public Read only

0
0
Text · 246 B · 7843ebc Raw
15 lines · plain
1# SPDX-License-Identifier: GPL-2.02CC = gcc3CFLAGS = -O2 -Wall -pthread4 5all: trace-agent6 7.c.o:8	$(CC) $(CFLAGS) -c $^ -o $@9 10trace-agent: trace-agent.o trace-agent-ctl.o trace-agent-rw.o11	$(CC) $(CFLAGS) -o $@ $^12 13clean:14	rm -f *.o trace-agent15