Add trace_cmd_tool/Makefile

This commit is contained in:
Mika 2025-12-17 12:03:31 +00:00
parent a751ca787d
commit 913914f0de

16
trace_cmd_tool/Makefile Normal file
View file

@ -0,0 +1,16 @@
CC ?= gcc
CFLAGS ?= -Wall -Wextra -O2
LDFLAGS ?=
TARGET := trace_cmd_tool
SRC := main.c
all: $(TARGET)
$(TARGET): $(SRC)
$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
clean:
rm -f $(TARGET) *.o
.PHONY: all clean