brintos

brintos / linux-shallow public Read only

0
0
Text · 1.5 KiB · 34e5894 Raw
49 lines · plain
1# SPDX-License-Identifier: GPL-2.02ifeq ($(MAKELEVEL),0)3$(error This Makefile is not intended to be run standalone, but only as a part \4of the  main one in the parent dir)5endif6 7OUTPUT := ./8ifeq ("$(origin O)", "command line")9ifneq ($(O),)10	OUTPUT := $(O)/11endif12endif13 14ifeq ($(strip $(STATIC)),true)15LIBS = -L../ -L$(OUTPUT) -lm16OBJS = $(OUTPUT)main.o $(OUTPUT)parse.o $(OUTPUT)system.o $(OUTPUT)benchmark.o \17       $(OUTPUT)../lib/cpufreq.o $(OUTPUT)../lib/cpupower.o18else19LIBS = -L../ -L$(OUTPUT) -lm -lcpupower20OBJS = $(OUTPUT)main.o $(OUTPUT)parse.o $(OUTPUT)system.o $(OUTPUT)benchmark.o21endif22 23override CFLAGS += -D_GNU_SOURCE -I../lib -DDEFAULT_CONFIG_FILE=\"$(confdir)/cpufreq-bench.conf\"24 25$(OUTPUT)%.o : %.c26	$(ECHO) "  CC      " $@27	$(QUIET) $(CC) -c $(CFLAGS) $< -o $@28 29$(OUTPUT)cpufreq-bench: $(OBJS)30	$(ECHO) "  CC      " $@31	$(QUIET) $(CC) -o $@ $(CFLAGS) $(LDFLAGS) $(OBJS) $(LIBS)32 33all: $(OUTPUT)cpufreq-bench34 35install: $(OUTPUT)cpufreq-bench36	mkdir -p $(DESTDIR)/$(sbindir)37	mkdir -p $(DESTDIR)/$(bindir)38	mkdir -p $(DESTDIR)/$(docdir)39	mkdir -p $(DESTDIR)/$(confdir)40	install -m 755 $(OUTPUT)cpufreq-bench $(DESTDIR)/$(sbindir)/cpufreq-bench41	install -m 755 cpufreq-bench_plot.sh $(DESTDIR)/$(bindir)/cpufreq-bench_plot.sh42	install -m 644 README-BENCH $(DESTDIR)/$(docdir)/README-BENCH43	install -m 755 cpufreq-bench_script.sh $(DESTDIR)/$(docdir)/cpufreq-bench_script.sh44	install -m 644 example.cfg $(DESTDIR)/$(confdir)/cpufreq-bench.conf45 46clean:47	rm -f $(OUTPUT)*.o48	rm -f $(OUTPUT)cpufreq-bench49