2019-06-30 10:14:08 -07:00
# SPDX-License-Identifier: GPL-2.0
i n c l u d e . . / . . / . . / s c r i p t s / M a k e f i l e . i n c l u d e
bindir ?= /usr/bin
i f e q ( $( srctree ) , )
srctree := $( patsubst %/,%,$( dir $( CURDIR) ) )
srctree := $( patsubst %/,%,$( dir $( srctree) ) )
srctree := $( patsubst %/,%,$( dir $( srctree) ) )
srctree := $( patsubst %/,%,$( dir $( srctree) ) )
e n d i f
# Do not use make's built-in rules
# (this improves performance and avoids hard-to-debug behaviour);
MAKEFLAGS += -r
2022-01-18 16:44:20 -08:00
o v e r r i d e CFLAGS += -O2 -Wall -g -D_GNU_SOURCE -I$( OUTPUT) include -I/usr/include/libnl3
o v e r r i d e LDFLAGS += -lnl-genl-3 -lnl-3
2019-06-30 10:14:08 -07:00
ALL_TARGETS := intel-speed-select
ALL_PROGRAMS := $( patsubst %,$( OUTPUT) %,$( ALL_TARGETS) )
all : $( ALL_PROGRAMS )
export srctree OUTPUT CC LD CFLAGS
i n c l u d e $( srctree ) / t o o l s / b u i l d / M a k e f i l e . i n c l u d e
#
# We need the following to be outside of kernel tree
#
$(OUTPUT)include/linux/isst_if.h : ../../../../include /uapi /linux /isst_if .h
mkdir -p $( OUTPUT) include/linux 2>& 1 || true
ln -sf $( CURDIR) /../../../../include/uapi/linux/isst_if.h $@
2022-01-18 16:44:20 -08:00
$(OUTPUT)include/linux/thermal.h : ../../../../include /uapi /linux /thermal .h
mkdir -p $( OUTPUT) include/linux 2>& 1 || true
ln -sf $( CURDIR) /../../../../include/uapi/linux/thermal.h $@
prepare : $( OUTPUT ) include /linux /isst_if .h $( OUTPUT ) include /linux /thermal .h
2019-06-30 10:14:08 -07:00
ISST_IN := $( OUTPUT) intel-speed-select-in.o
$(ISST_IN) : prepare FORCE
$( Q) $( MAKE) $( build) = intel-speed-select
$(OUTPUT)intel-speed-select : $( ISST_IN )
$( QUIET_LINK) $( CC) $( CFLAGS) $( LDFLAGS) $< -o $@
clean :
rm -f $( ALL_PROGRAMS)
rm -rf $( OUTPUT) include/linux/isst_if.h
kbuild: replace $(if A,A,B) with $(or A,B)
$(or ...) is available since GNU Make 3.81, and useful to shorten the
code in some places.
Covert as follows:
$(if A,A,B) --> $(or A,B)
This patch also converts:
$(if A, A, B) --> $(or A, B)
Strictly speaking, the latter is not an equivalent conversion because
GNU Make keeps spaces after commas; if A is not empty, $(if A, A, B)
expands to " A", while $(or A, B) expands to "A".
Anyway, preceding spaces are not significant in the code hunks I touched.
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Reviewed-by: Nicolas Schier <nicolas@fjasle.eu>
2022-02-11 14:14:11 +09:00
find $( or $( OUTPUT) ,.) -name '*.o' -delete -o -name '\.*.d' -delete
2019-06-30 10:14:08 -07:00
install : $( ALL_PROGRAMS )
install -d -m 755 $( DESTDIR) $( bindir) ; \
for program in $( ALL_PROGRAMS) ; do \
install $$ program $( DESTDIR) $( bindir) ; \
done
FORCE :
.PHONY : all install clean FORCE prepare