mirror of
https://git.proxmox.com/git/mirror_ubuntu-kernels.git
synced 2026-01-27 08:20:26 +00:00
debian/rules is generated by shell, but the escape sequence (\$) is unreadable. debian/rules embeds only two variables (ARCH and KERNELRELEASE). Split them out to debian/rules.vars, and check-in the rest of Makefile code to scripts/package/debian/rules. Signed-off-by: Masahiro Yamada <masahiroy@kernel.org> Tested-by: Nathan Chancellor <nathan@kernel.org> Reviewed-by: Nicolas Schier <nicolas@fjasle.eu>
29 lines
731 B
Makefile
Executable File
29 lines
731 B
Makefile
Executable File
#!/usr/bin/make -f
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
include debian/rules.vars
|
|
|
|
srctree ?= .
|
|
|
|
.PHONY: binary binary-indep binary-arch
|
|
binary: binary-arch binary-indep
|
|
binary-indep: build-indep
|
|
binary-arch: build-arch
|
|
$(MAKE) -f $(srctree)/Makefile ARCH=$(ARCH) \
|
|
KERNELRELEASE=$(KERNELRELEASE) \
|
|
run-command KBUILD_RUN_COMMAND=+$(srctree)/scripts/package/builddeb
|
|
|
|
.PHONY: build build-indep build-arch
|
|
build: build-arch build-indep
|
|
build-indep:
|
|
build-arch:
|
|
$(MAKE) -f $(srctree)/Makefile ARCH=$(ARCH) \
|
|
KERNELRELEASE=$(KERNELRELEASE) \
|
|
$(shell $(srctree)/scripts/package/deb-build-option) \
|
|
olddefconfig all
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -rf debian/files debian/linux-*
|
|
$(MAKE) -f $(srctree)/Makefile ARCH=$(ARCH) clean
|