zen-rapl/makefile

13 lines
151 B
Makefile
Raw Permalink Normal View History

2024-09-26 21:19:46 -07:00
.PHONY : clean debug
LDLIBS = -lm
objects = zen-rapl.o
zen-rapl : $(objects)
debug : CFLAGS += -g
debug : zen-rapl
clean :
rm zen-rapl $(objects)