Blame src/components/rapl/utils/Makefile

Packit 577717
CC = gcc
Packit 577717
CFLAGS = -O2 -Wall
Packit 577717
LFLAGS = 
Packit 577717
PAPI_INCLUDE = ../../..
Packit 577717
PAPI_LIBRARY = ../../../libpapi.a
Packit 577717
Packit 577717
all:	rapl_plot
Packit 577717
Packit 577717
rapl_plot:	rapl_plot.o
Packit 577717
	$(CC) $(LFLAGS) -o rapl_plot rapl_plot.o $(PAPI_LIBRARY)
Packit 577717
Packit 577717
rapl_plot.o:	rapl_plot.c
Packit 577717
	$(CC) $(CFLAGS) -I$(PAPI_INCLUDE) -c rapl_plot.c
Packit 577717
Packit 577717
clean:	
Packit 577717
	rm -f *~ *.o rapl_plot results.*