blob: 6ad71620e5034b9197c1ef936d08b93a9d5bfe85 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001# SPDX-License-Identifier: GPL-2.0
Arnd Bergmann14fbff62016-04-25 18:03:08 +02002obj-$(CONFIG_SAMPLE_CONNECTOR) += cn_test.o
Randy Dunlap3794f3e2008-08-12 15:09:06 -07003
4# List of programs to build
Arnd Bergmann14fbff62016-04-25 18:03:08 +02005ifdef CONFIG_SAMPLE_CONNECTOR
Randy Dunlap3794f3e2008-08-12 15:09:06 -07006hostprogs-y := ucon
Arnd Bergmann14fbff62016-04-25 18:03:08 +02007endif
Randy Dunlap3794f3e2008-08-12 15:09:06 -07008
9# Tell kbuild to always build the programs
10always := $(hostprogs-y)
11
12HOSTCFLAGS_ucon.o += -I$(objtree)/usr/include
Mike Frysinger37cf2b82009-07-17 10:14:26 -070013
14all: modules
15
16modules clean:
Masahiro Yamada0126be32018-11-21 00:04:18 +090017 $(MAKE) -C ../.. M=$(CURDIR) $@