From 42bab2aa3d848c1987e3c70e001a07fef391a48a Mon Sep 17 00:00:00 2001 From: Mika Date: Sun, 7 Dec 2025 16:32:04 +0000 Subject: [PATCH] Add powersave_analysis_script/Makefile --- powersave_analysis_script/Makefile | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 powersave_analysis_script/Makefile diff --git a/powersave_analysis_script/Makefile b/powersave_analysis_script/Makefile new file mode 100644 index 0000000..baf7781 --- /dev/null +++ b/powersave_analysis_script/Makefile @@ -0,0 +1,17 @@ +CC=gcc +CFLAGS=-std=c11 -Wall -Wextra -O2 +LDFLAGS= +TARGET=powersave_agg + +all: $(TARGET) + +$(TARGET): main.o + $(CC) $(CFLAGS) -o $(TARGET) main.o $(LDFLAGS) + +main.o: main.c + $(CC) $(CFLAGS) -c main.c + +clean: + rm -f $(TARGET) main.o + +.PHONY: all clean