blob: fe3c8542ae4ab49b89c187d49aceec95666425c1 [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:
Uwe Kleine-Könige19b7ce2016-11-22 09:30:26 +010017 $(MAKE) -C ../.. SUBDIRS=$(CURDIR) $@