summaryrefslogtreecommitdiff
path: root/Makefile.build
diff options
context:
space:
mode:
authorOleksandr Suvorov <oleksandr.suvorov@toradex.com>2020-03-26 12:44:27 +0200
committerOleksandr Suvorov <oleksandr.suvorov@toradex.com>2020-03-26 12:46:50 +0200
commit87d308708712ff6075c4dd54b0519b47fdad8816 (patch)
tree2fb6458b1db7dd21be2648f42412dd2485846c76 /Makefile.build
Backports v5.4.27
Backports generated by toradex backports f6e8852f1ef28e6d3c9bae8400eb6a87a6b0c3e7 against mainline kernel tag v5.4.27 Signed-off-by: Oleksandr Suvorov <oleksandr.suvorov@toradex.com>
Diffstat (limited to 'Makefile.build')
-rw-r--r--Makefile.build17
1 files changed, 17 insertions, 0 deletions
diff --git a/Makefile.build b/Makefile.build
new file mode 100644
index 0000000..9c272b2
--- /dev/null
+++ b/Makefile.build
@@ -0,0 +1,17 @@
+# detect if make supports --eval
+_EVAL := $(shell make --eval "test:" -f /dev/null test >/dev/null 2>&1 && echo YES || echo NO)
+ifeq ($(_EVAL),YES)
+MAKE=$(BACKPORT_DIR)/scripts/make
+else
+-include .config
+endif
+
+export
+
+.PHONY: modules
+modules:
+ @$(MAKE) -C $(KLIB_BUILD) M=$(BACKPORT_DIR) modules
+
+.PHONY: clean
+clean:
+ @$(MAKE) -C $(KLIB_BUILD) M=$(BACKPORT_DIR) clean