xref: /linux/samples/connector/Makefile (revision 15a1fbdcfb519c2bd291ed01c6c94e0b89537a77)
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