diff options
author | Jan-Simon Möller <jsmoeller@linuxfoundation.org> | 2015-12-22 00:46:19 +0100 |
---|---|---|
committer | Jan-Simon Möller <jsmoeller@linuxfoundation.org> | 2015-12-22 00:48:01 +0100 |
commit | df9e0ad632b122e19964d2f39588fb5fe2087037 (patch) | |
tree | f896d3cefff09a33ff87f0dafe61db7c3c7ab9b3 /recipes-kernel/hdm-usb/files/Makefile | |
parent | e10617b85d81591de2a5b567d43a1f48cc15aa5f (diff) | |
parent | 762181dff011efbaf3d40edb1b3d573c5aceab01 (diff) |
Merge branch 'master' of ssh://gerrit.automotivelinux.org:29418/AGL/meta-agl-demo into albacore
Change-Id: Ieedfdda7a1be86c626c6f67b57fed05adb628a87
Signed-off-by: Jan-Simon Möller <jsmoeller@linuxfoundation.org>
Diffstat (limited to 'recipes-kernel/hdm-usb/files/Makefile')
-rw-r--r-- | recipes-kernel/hdm-usb/files/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/recipes-kernel/hdm-usb/files/Makefile b/recipes-kernel/hdm-usb/files/Makefile new file mode 100644 index 000000000..0714f6b73 --- /dev/null +++ b/recipes-kernel/hdm-usb/files/Makefile @@ -0,0 +1,17 @@ +# Makefile +# + +SRC := $(shell pwd) + +obj-m += hdm_usb.o +CFLAGS_hdm_usb.o := -I$(src)/../../aim-network/files/ -I$(src)/../../mostcore/files + +all: + $(MAKE) -C $(KERNEL_SRC) M=$(SRC) modules + +modules_install: + $(MAKE) -C $(KERNEL_SRC) M=$(SRC) modules_install + +clean: + $(MAKE) -C $(KERNEL_SRC) M=$(SRC) clean + |