13 lines
151 B
Makefile
13 lines
151 B
Makefile
.PHONY : clean debug
|
|
|
|
LDLIBS = -lm
|
|
objects = zen-rapl.o
|
|
|
|
zen-rapl : $(objects)
|
|
|
|
debug : CFLAGS += -g
|
|
debug : zen-rapl
|
|
|
|
clean :
|
|
rm zen-rapl $(objects)
|