Skip to content

Commit 316d401

Browse files
authored
build: check make version before running Makefile (#4054)
1 parent 4865e55 commit 316d401

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2+
ifneq ($(firstword $(sort $(MAKE_VERSION) 4.1)),4.1)
3+
$(error Your make is too old ($(MAKE_VERSION)). Please install GNU make >= 4.1)
4+
endif
5+
16
include mk/platform.mk
27
include mk/gmsl
38

0 commit comments

Comments
 (0)