2019-05-19 15:07:45 +03:00
# SPDX-License-Identifier: GPL-2.0-only
2017-07-26 12:59:29 +03:00
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
2017-07-26 12:59:30 +03:00
bindir ?= /usr/bin
2017-07-26 12:59:29 +03:00
i f e q ( $( srctree ) , )
srctree := $( patsubst %/,%,$( dir $( CURDIR) ) )
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
CFLAGS += -O2 -Wall -g -D_GNU_SOURCE -I$( OUTPUT) include
ALL_TARGETS := spidev_test spidev_fdx
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
2016-09-07 18:43:00 +03:00
2017-07-26 12:59:29 +03:00
#
# We need the following to be outside of kernel tree
#
2021-04-22 13:26:04 +03:00
$(OUTPUT)include/linux/spi : ../../include /uapi /linux /spi
2017-07-26 12:59:29 +03:00
mkdir -p $( OUTPUT) include/linux/spi 2>& 1 || true
ln -sf $( CURDIR) /../../include/uapi/linux/spi/spidev.h $@
2021-04-22 13:26:04 +03:00
ln -sf $( CURDIR) /../../include/uapi/linux/spi/spi.h $@
2017-07-26 12:59:29 +03:00
2021-04-22 13:26:04 +03:00
prepare : $( OUTPUT ) include /linux /spi
2017-07-26 12:59:29 +03:00
#
# spidev_test
#
SPIDEV_TEST_IN := $( OUTPUT) spidev_test-in.o
$(SPIDEV_TEST_IN) : prepare FORCE
$( Q) $( MAKE) $( build) = spidev_test
$(OUTPUT)spidev_test : $( SPIDEV_TEST_IN )
$( QUIET_LINK) $( CC) $( CFLAGS) $( LDFLAGS) $< -o $@
#
# spidev_fdx
#
SPIDEV_FDX_IN := $( OUTPUT) spidev_fdx-in.o
$(SPIDEV_FDX_IN) : prepare FORCE
$( Q) $( MAKE) $( build) = spidev_fdx
$(OUTPUT)spidev_fdx : $( SPIDEV_FDX_IN )
$( QUIET_LINK) $( CC) $( CFLAGS) $( LDFLAGS) $< -o $@
2015-11-19 01:30:37 +03:00
clean :
2017-07-26 12:59:29 +03:00
rm -f $( ALL_PROGRAMS)
2020-02-13 07:16:08 +03:00
rm -rf $( OUTPUT) include/
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 08:14:11 +03:00
find $( or $( OUTPUT) ,.) -name '*.o' -delete
find $( or $( OUTPUT) ,.) -name '\.*.o.d' -delete
find $( or $( OUTPUT) ,.) -name '\.*.o.cmd' -delete
2017-07-26 12:59:29 +03:00
2017-07-26 12:59:30 +03:00
install : $( ALL_PROGRAMS )
install -d -m 755 $( DESTDIR) $( bindir) ; \
for program in $( ALL_PROGRAMS) ; do \
install $$ program $( DESTDIR) $( bindir) ; \
done
2017-07-26 12:59:29 +03:00
FORCE :
2017-07-26 12:59:30 +03:00
.PHONY : all install clean FORCE prepare