1# SPDX-License-Identifier: GPL-2.0 2obj-$(CONFIG_SAMPLE_CONNECTOR) += cn_test.o 3 4# List of programs to build 5hostprogs := ucon 6always-y := $(hostprogs) 7 8HOSTCFLAGS_ucon.o += -I$(objtree)/usr/include 9 10all: modules 11 12modules clean: 13 $(MAKE) -C ../.. M=$(CURDIR) $@ 14