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