mirror of
https://github.com/Telecominfraproject/OpenNetworkLinux.git
synced 2025-12-25 17:27:01 +00:00
20 lines
307 B
Makefile
20 lines
307 B
Makefile
ifndef KERNELS
|
|
$(error $$KERNELS must be set)
|
|
endif
|
|
|
|
ifndef KMODULES
|
|
$(error $$KMODULES must be set)
|
|
endif
|
|
|
|
ifndef PLATFORM
|
|
$(error $$PLATFORM must be set)
|
|
endif
|
|
|
|
ifndef ARCH
|
|
$(error $$ARCH must be set)
|
|
endif
|
|
|
|
|
|
modules:
|
|
ARCH=$(ARCH) $(ONL)/tools/scripts/kmodbuild.sh "$(KERNELS)" "$(KMODULES)" $(PLATFORM)
|