14fbff6b4e
A small bug with the new autoksyms support showed that there are two kernel modules in the Documentation directory that qualify as samples, while all other samples are in the samples/ directory. This patch was originally meant as a workaround for that bug, but it has now been solved in a different way. However, I still think it makes sense as a cleanup to consolidate all sample code in one place. Signed-off-by: Arnd Bergmann <arnd@arndb.de> Signed-off-by: Jonathan Corbet <corbet@lwn.net>
16 lines
311 B
Makefile
16 lines
311 B
Makefile
obj-$(CONFIG_SAMPLE_CONNECTOR) += cn_test.o
|
|
|
|
# List of programs to build
|
|
ifdef CONFIG_SAMPLE_CONNECTOR
|
|
hostprogs-y := ucon
|
|
endif
|
|
|
|
# Tell kbuild to always build the programs
|
|
always := $(hostprogs-y)
|
|
|
|
HOSTCFLAGS_ucon.o += -I$(objtree)/usr/include
|
|
|
|
all: modules
|
|
|
|
modules clean:
|
|
$(MAKE) -C ../.. SUBDIRS=$(PWD) $@
|