Randy Dunlap | 3794f3e | 2008-08-12 15:09:06 -0700 | [diff] [blame] | 1 | ifneq ($(CONFIG_CONNECTOR),) |
2 | obj-m += cn_test.o | ||||
3 | endif | ||||
4 | |||||
5 | # List of programs to build | ||||
6 | hostprogs-y := ucon | ||||
7 | |||||
8 | # Tell kbuild to always build the programs | ||||
9 | always := $(hostprogs-y) | ||||
10 | |||||
11 | HOSTCFLAGS_ucon.o += -I$(objtree)/usr/include | ||||
Mike Frysinger | 37cf2b8 | 2009-07-17 10:14:26 -0700 | [diff] [blame] | 12 | |
13 | all: modules | ||||
14 | |||||
15 | modules clean: | ||||
16 | $(MAKE) -C ../.. SUBDIRS=$(PWD) $@ |