From 3d429e0f606d9472ac29e5e2f8e6ccf60443bff2 Mon Sep 17 00:00:00 2001 From: Mika Date: Sat, 6 Dec 2025 13:10:44 +0000 Subject: [PATCH] Add bootstrap_analysis_tool/Makefile --- bootstrap_analysis_tool/Makefile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 bootstrap_analysis_tool/Makefile diff --git a/bootstrap_analysis_tool/Makefile b/bootstrap_analysis_tool/Makefile new file mode 100644 index 0000000..550cb90 --- /dev/null +++ b/bootstrap_analysis_tool/Makefile @@ -0,0 +1,18 @@ +CC=gcc +CFLAGS=-std=c11 -O2 -Wall -Wextra -pedantic +LDFLAGS= + +TARGET=bootstrap_tool + +all: $(TARGET) + +$(TARGET): main.o + $(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) + +main.o: main.c + $(CC) $(CFLAGS) -c main.c + +clean: + rm -f $(TARGET) main.o + +.PHONY: all clean