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