summaryrefslogtreecommitdiff
path: root/scripts/package/debian/rules
blob: 529b71b55efa55fae9dcf9f254734960a776d67e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#!/usr/bin/make -f
# SPDX-License-Identifier: GPL-2.0-only

include debian/rules.vars

srctree ?= .

ifneq (,$(filter-out parallel=1,$(filter parallel=%,$(DEB_BUILD_OPTIONS))))
    NUMJOBS = $(patsubst parallel=%,%,$(filter parallel=%,$(DEB_BUILD_OPTIONS)))
    MAKEFLAGS += -j$(NUMJOBS)
endif

revision = $(lastword $(subst -, ,$(shell dpkg-parsechangelog -S Version)))
CROSS_COMPILE ?= $(filter-out $(DEB_BUILD_GNU_TYPE)-, $(DEB_HOST_GNU_TYPE)-)
make-opts = ARCH=$(ARCH) KERNELRELEASE=$(KERNELRELEASE) KBUILD_BUILD_VERSION=$(revision) $(addprefix CROSS_COMPILE=,$(CROSS_COMPILE))

.PHONY: binary binary-indep binary-arch
binary: binary-arch binary-indep
binary-indep: build-indep
binary-arch: build-arch
	$(MAKE) -f $(srctree)/Makefile $(make-opts) \
	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 $(make-opts) \
	olddefconfig all

.PHONY: clean
clean:
	rm -rf debian/files debian/linux-*
	$(MAKE) -f $(srctree)/Makefile ARCH=$(ARCH) clean