1 # SPDX-License-Identifier: GPL-2.0 2 ifeq ($(MAKELEVEL),0) 3 $(error This Makefile is not intended to be ru 4 of the main one in the parent dir) 5 endif 6 7 OUTPUT := ./ 8 ifeq ("$(origin O)", "command line") 9 ifneq ($(O),) 10 OUTPUT := $(O)/ 11 endif 12 endif 13 14 ifeq ($(strip $(STATIC)),true) 15 LIBS = -L../ -L$(OUTPUT) -lm 16 OBJS = $(OUTPUT)main.o $(OUTPUT)parse.o $(OUTP 17 $(OUTPUT)../lib/cpufreq.o $(OUTPUT)../l 18 else 19 LIBS = -L../ -L$(OUTPUT) -lm -lcpupower 20 OBJS = $(OUTPUT)main.o $(OUTPUT)parse.o $(OUTP 21 endif 22 23 override CFLAGS += -D_GNU_SOURCE -I../lib -DDE 24 25 $(OUTPUT)%.o : %.c 26 $(ECHO) " CC " $@ 27 $(QUIET) $(CC) -c $(CFLAGS) $< -o $@ 28 29 $(OUTPUT)cpufreq-bench: $(OBJS) 30 $(ECHO) " CC " $@ 31 $(QUIET) $(CC) -o $@ $(CFLAGS) $(LDFLA 32 33 all: $(OUTPUT)cpufreq-bench 34 35 install: $(OUTPUT)cpufreq-bench 36 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 41 install -m 755 cpufreq-bench_plot.sh $ 42 install -m 644 README-BENCH $(DESTDIR) 43 install -m 755 cpufreq-bench_script.sh 44 install -m 644 example.cfg $(DESTDIR)/ 45 46 clean: 47 rm -f $(OUTPUT)*.o 48 rm -f $(OUTPUT)cpufreq-bench
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.