Adding code

This commit is contained in:
2024-09-26 21:20:42 -07:00
parent 07b76a7fe9
commit 110226ee18
5 changed files with 368 additions and 1 deletions
+12
View File
@@ -0,0 +1,12 @@
.PHONY : clean debug
LDLIBS = -lm
objects = zen-rapl.o
zen-rapl : $(objects)
debug : CFLAGS += -g
debug : zen-rapl
clean :
rm zen-rapl $(objects)