summaryrefslogtreecommitdiff
path: root/Makefile.build
diff options
context:
space:
mode:
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