2019-05-19 20:07:45 +08:00
|
|
|
# SPDX-License-Identifier: GPL-2.0-only
|
2005-04-17 06:20:36 +08:00
|
|
|
# Makefile for the different targets used to generate full packages of a kernel
|
2019-08-21 15:02:04 +08:00
|
|
|
|
|
|
|
include $(srctree)/scripts/Kbuild.include
|
2023-03-15 23:50:18 +08:00
|
|
|
include $(srctree)/scripts/Makefile.lib
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2023-03-15 23:50:18 +08:00
|
|
|
# Git
|
|
|
|
# ---------------------------------------------------------------------------
|
2023-02-15 09:20:24 +08:00
|
|
|
|
2023-03-15 23:50:18 +08:00
|
|
|
filechk_HEAD = git -C $(srctree) rev-parse --verify HEAD 2>/dev/null
|
2023-02-15 09:20:30 +08:00
|
|
|
|
2023-03-15 23:50:18 +08:00
|
|
|
.tmp_HEAD: check-git FORCE
|
|
|
|
$(call filechk,HEAD)
|
2023-02-15 09:20:30 +08:00
|
|
|
|
2023-03-15 23:50:18 +08:00
|
|
|
PHONY += check-git
|
|
|
|
check-git:
|
|
|
|
@if ! $(srctree)/scripts/check-git; then \
|
|
|
|
echo >&2 "error: creating source package requires git repository"; \
|
|
|
|
false; \
|
|
|
|
fi
|
2023-02-15 09:20:30 +08:00
|
|
|
|
2023-04-17 22:25:48 +08:00
|
|
|
git-config-tar.gz = -c tar.tar.gz.command="$(KGZIP)"
|
|
|
|
git-config-tar.bz2 = -c tar.tar.bz2.command="$(KBZIP2)"
|
|
|
|
git-config-tar.lzma = -c tar.tar.lzma.command="$(LZMA)"
|
|
|
|
git-config-tar.xz = -c tar.tar.xz.command="$(XZ)"
|
|
|
|
git-config-tar.zst = -c tar.tar.zst.command="$(ZSTD)"
|
2023-04-07 18:16:28 +08:00
|
|
|
|
2023-04-07 18:16:27 +08:00
|
|
|
quiet_cmd_archive = ARCHIVE $@
|
2023-04-07 18:16:28 +08:00
|
|
|
cmd_archive = git -C $(srctree) $(git-config-tar$(suffix $@)) archive \
|
2023-04-20 01:04:24 +08:00
|
|
|
--output=$$(realpath $@) $(archive-args)
|
2023-04-07 18:16:27 +08:00
|
|
|
|
2023-04-17 22:25:48 +08:00
|
|
|
suffix-gzip := .gz
|
|
|
|
suffix-bzip2 := .bz2
|
|
|
|
suffix-lzma := .lzma
|
|
|
|
suffix-xz := .xz
|
|
|
|
|
2023-02-15 09:20:24 +08:00
|
|
|
# Linux source tarball
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
2023-04-17 22:25:48 +08:00
|
|
|
linux-tarballs := $(addprefix linux, .tar.gz .tar.bz2 .tar.lzma .tar.xz)
|
2023-04-07 18:16:28 +08:00
|
|
|
|
|
|
|
targets += $(linux-tarballs)
|
2023-04-20 01:04:24 +08:00
|
|
|
$(linux-tarballs): archive-args = --prefix=linux/ $$(cat $<)
|
2023-04-07 18:16:28 +08:00
|
|
|
$(linux-tarballs): .tmp_HEAD FORCE
|
2023-04-07 18:16:27 +08:00
|
|
|
$(call if_changed,archive)
|
2023-02-15 09:20:24 +08:00
|
|
|
|
2023-07-22 12:48:05 +08:00
|
|
|
# rpm-pkg srcrpm-pkg binrpm-pkg
|
2006-03-09 01:39:05 +08:00
|
|
|
# ---------------------------------------------------------------------------
|
2022-11-21 22:48:45 +08:00
|
|
|
|
2023-07-22 12:48:05 +08:00
|
|
|
quiet_cmd_mkspec = GEN $@
|
2023-09-30 18:38:47 +08:00
|
|
|
cmd_mkspec = $(srctree)/scripts/package/mkspec $@
|
2023-07-22 12:48:05 +08:00
|
|
|
|
2023-09-30 18:38:47 +08:00
|
|
|
rpmbuild/SPECS/kernel.spec: FORCE
|
2023-07-22 12:48:05 +08:00
|
|
|
$(call cmd,mkspec)
|
|
|
|
|
|
|
|
PHONY += rpm-sources
|
|
|
|
rpm-sources: linux.tar.gz
|
|
|
|
$(Q)mkdir -p rpmbuild/SOURCES
|
|
|
|
$(Q)ln -f linux.tar.gz rpmbuild/SOURCES/linux.tar.gz
|
|
|
|
$(Q)cp $(KCONFIG_CONFIG) rpmbuild/SOURCES/config
|
|
|
|
$(Q)$(srctree)/scripts/package/gen-diff-patch rpmbuild/SOURCES/diff.patch
|
|
|
|
|
|
|
|
PHONY += rpm-pkg srcrpm-pkg binrpm-pkg
|
|
|
|
|
|
|
|
rpm-pkg: private build-type := a
|
|
|
|
srcrpm-pkg: private build-type := s
|
|
|
|
binrpm-pkg: private build-type := b
|
|
|
|
|
|
|
|
rpm-pkg srcrpm-pkg: rpm-sources
|
2023-09-30 18:38:47 +08:00
|
|
|
rpm-pkg srcrpm-pkg binrpm-pkg: rpmbuild/SPECS/kernel.spec
|
|
|
|
+$(strip rpmbuild -b$(build-type) rpmbuild/SPECS/kernel.spec \
|
2023-07-22 12:48:05 +08:00
|
|
|
--define='_topdir $(abspath rpmbuild)' \
|
|
|
|
$(if $(filter a b, $(build-type)), \
|
2023-07-22 12:48:06 +08:00
|
|
|
--target $(UTS_MACHINE)-linux --build-in-place --noprep --define='_smp_mflags %{nil}' \
|
|
|
|
$$(rpm -q rpm >/dev/null 2>&1 || echo --nodeps)) \
|
2023-07-22 12:48:05 +08:00
|
|
|
$(RPMOPTS))
|
2017-09-30 09:10:10 +08:00
|
|
|
|
2023-04-17 22:25:47 +08:00
|
|
|
# deb-pkg srcdeb-pkg bindeb-pkg
|
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
2023-04-17 22:25:48 +08:00
|
|
|
KDEB_SOURCE_COMPRESS ?= gzip
|
|
|
|
|
|
|
|
supported-deb-source-compress := gzip bzip2 lzma xz
|
|
|
|
|
|
|
|
PHONY += linux.tar.unsupported-deb-src-compress
|
|
|
|
linux.tar.unsupported-deb-src-compress:
|
|
|
|
@echo "error: KDEB_SOURCE_COMPRESS=$(KDEB_SOURCE_COMPRESS) is not supported. The supported values are: $(supported-deb-source-compress)" >&2
|
|
|
|
@false
|
|
|
|
|
|
|
|
debian-orig-suffix := \
|
|
|
|
$(strip $(if $(filter $(supported-deb-source-compress), $(KDEB_SOURCE_COMPRESS)), \
|
|
|
|
$(suffix-$(KDEB_SOURCE_COMPRESS)),.unsupported-deb-src-compress))
|
|
|
|
|
2023-02-15 09:20:27 +08:00
|
|
|
quiet_cmd_debianize = GEN $@
|
kbuild: give up untracked files for source package builds
When the source tree is dirty and contains untracked files, package
builds may fail, for example, when a broken symlink exists, a file
path contains whitespaces, etc.
Since commit 05e96e96a315 ("kbuild: use git-archive for source package
creation"), the source tarball only contains committed files because
it is created by 'git archive'. scripts/package/gen-diff-patch tries
to address the diff from HEAD, but including untracked files by the
hand-crafted script introduces more complexity. I wrote a patch [1] to
make it work in most cases, but still wonder if this is what we should
aim for.
To simplify the code, this patch just gives up untracked files. Going
forward, it is your responsibility to do 'git add' for what you want in
the source package. The script shows a warning just in case you forgot
to do so. It should be checked only when building source packages.
[1]: https://lore.kernel.org/all/CAK7LNAShbZ56gSh9PrbLnBDYKnjtTkHMoCXeGrhcxMvqXGq9=g@mail.gmail.com/2-0001-kbuild-make-package-builds-more-robust.patch
Fixes: 05e96e96a315 ("kbuild: use git-archive for source package creation")
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Reviewed-by: Nicolas Schier <nicolas@fjasle.eu>
2023-04-10 20:09:07 +08:00
|
|
|
cmd_debianize = $(srctree)/scripts/package/mkdebian $(mkdebian-opts)
|
2023-02-15 09:20:27 +08:00
|
|
|
|
|
|
|
debian: FORCE
|
|
|
|
$(call cmd,debianize)
|
|
|
|
|
|
|
|
PHONY += debian-orig
|
|
|
|
debian-orig: private source = $(shell dpkg-parsechangelog -S Source)
|
|
|
|
debian-orig: private version = $(shell dpkg-parsechangelog -S Version | sed 's/-[^-]*$$//')
|
2023-04-17 22:25:48 +08:00
|
|
|
debian-orig: private orig-name = $(source)_$(version).orig.tar$(debian-orig-suffix)
|
kbuild: give up untracked files for source package builds
When the source tree is dirty and contains untracked files, package
builds may fail, for example, when a broken symlink exists, a file
path contains whitespaces, etc.
Since commit 05e96e96a315 ("kbuild: use git-archive for source package
creation"), the source tarball only contains committed files because
it is created by 'git archive'. scripts/package/gen-diff-patch tries
to address the diff from HEAD, but including untracked files by the
hand-crafted script introduces more complexity. I wrote a patch [1] to
make it work in most cases, but still wonder if this is what we should
aim for.
To simplify the code, this patch just gives up untracked files. Going
forward, it is your responsibility to do 'git add' for what you want in
the source package. The script shows a warning just in case you forgot
to do so. It should be checked only when building source packages.
[1]: https://lore.kernel.org/all/CAK7LNAShbZ56gSh9PrbLnBDYKnjtTkHMoCXeGrhcxMvqXGq9=g@mail.gmail.com/2-0001-kbuild-make-package-builds-more-robust.patch
Fixes: 05e96e96a315 ("kbuild: use git-archive for source package creation")
Signed-off-by: Masahiro Yamada <masahiroy@kernel.org>
Reviewed-by: Nicolas Schier <nicolas@fjasle.eu>
2023-04-10 20:09:07 +08:00
|
|
|
debian-orig: mkdebian-opts = --need-source
|
2023-04-17 22:25:48 +08:00
|
|
|
debian-orig: linux.tar$(debian-orig-suffix) debian
|
2023-02-15 09:20:28 +08:00
|
|
|
$(Q)if [ "$(df --output=target .. 2>/dev/null)" = "$(df --output=target $< 2>/dev/null)" ]; then \
|
|
|
|
ln -f $< ../$(orig-name); \
|
|
|
|
else \
|
|
|
|
cp $< ../$(orig-name); \
|
|
|
|
fi
|
2023-02-15 09:20:27 +08:00
|
|
|
|
2023-04-17 22:25:47 +08:00
|
|
|
PHONY += deb-pkg srcdeb-pkg bindeb-pkg
|
|
|
|
|
|
|
|
deb-pkg: private build-type := source,binary
|
|
|
|
srcdeb-pkg: private build-type := source
|
|
|
|
bindeb-pkg: private build-type := binary
|
2015-09-02 17:57:24 +08:00
|
|
|
|
2023-04-17 22:25:47 +08:00
|
|
|
deb-pkg srcdeb-pkg: debian-orig
|
2023-02-15 09:20:27 +08:00
|
|
|
bindeb-pkg: debian
|
2023-04-17 22:25:47 +08:00
|
|
|
deb-pkg srcdeb-pkg bindeb-pkg:
|
|
|
|
+$(strip dpkg-buildpackage \
|
|
|
|
--build=$(build-type) --no-pre-clean --unsigned-changes \
|
|
|
|
$(if $(findstring source, $(build-type)), \
|
2023-04-17 22:25:48 +08:00
|
|
|
--unsigned-source --compression=$(KDEB_SOURCE_COMPRESS)) \
|
2023-04-17 22:25:47 +08:00
|
|
|
$(if $(findstring binary, $(build-type)), \
|
2023-11-29 07:53:56 +08:00
|
|
|
-R'$(MAKE) -f debian/rules' -j1 -a$$(cat debian/arch), \
|
2023-04-17 22:25:47 +08:00
|
|
|
--no-check-builddeps) \
|
|
|
|
$(DPKG_FLAGS))
|
2018-04-05 19:22:29 +08:00
|
|
|
|
scripts/package: snap-pkg target
Following in footsteps of other targets like 'deb-pkg, 'rpm-pkg' and 'tar-pkg',
this patch adds a 'snap-pkg' target for the creation of a Linux kernel snap
package using the kbuild infrastructure.
A snap, in its general form, is a self contained, sandboxed, universal package
and it is intended to work across multiple distributions and/or devices. A snap
package is distributed as a single compressed squashfs filesystem.
A kernel snap is a snap package carrying the Linux kernel, kernel modules,
accessory files (DTBs, System.map, etc) and a manifesto file. The purpose of a
kernel snap is to carry the Linux kernel during the creation of a system image,
eg. Ubuntu Core, and its subsequent upgrades.
For more information on snap packages: https://snapcraft.io/docs/
Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
2017-11-27 19:07:34 +08:00
|
|
|
# snap-pkg
|
|
|
|
# ---------------------------------------------------------------------------
|
2019-08-21 15:02:03 +08:00
|
|
|
PHONY += snap-pkg
|
|
|
|
snap-pkg:
|
scripts/package: snap-pkg target
Following in footsteps of other targets like 'deb-pkg, 'rpm-pkg' and 'tar-pkg',
this patch adds a 'snap-pkg' target for the creation of a Linux kernel snap
package using the kbuild infrastructure.
A snap, in its general form, is a self contained, sandboxed, universal package
and it is intended to work across multiple distributions and/or devices. A snap
package is distributed as a single compressed squashfs filesystem.
A kernel snap is a snap package carrying the Linux kernel, kernel modules,
accessory files (DTBs, System.map, etc) and a manifesto file. The purpose of a
kernel snap is to carry the Linux kernel during the creation of a system image,
eg. Ubuntu Core, and its subsequent upgrades.
For more information on snap packages: https://snapcraft.io/docs/
Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
2017-11-27 19:07:34 +08:00
|
|
|
rm -rf $(objtree)/snap
|
|
|
|
mkdir $(objtree)/snap
|
|
|
|
$(MAKE) clean
|
|
|
|
sed "s@KERNELRELEASE@$(KERNELRELEASE)@; \
|
2024-03-06 18:42:22 +08:00
|
|
|
s@SRCTREE@$(realpath $(srctree))@" \
|
scripts/package: snap-pkg target
Following in footsteps of other targets like 'deb-pkg, 'rpm-pkg' and 'tar-pkg',
this patch adds a 'snap-pkg' target for the creation of a Linux kernel snap
package using the kbuild infrastructure.
A snap, in its general form, is a self contained, sandboxed, universal package
and it is intended to work across multiple distributions and/or devices. A snap
package is distributed as a single compressed squashfs filesystem.
A kernel snap is a snap package carrying the Linux kernel, kernel modules,
accessory files (DTBs, System.map, etc) and a manifesto file. The purpose of a
kernel snap is to carry the Linux kernel during the creation of a system image,
eg. Ubuntu Core, and its subsequent upgrades.
For more information on snap packages: https://snapcraft.io/docs/
Signed-off-by: Paolo Pisati <paolo.pisati@canonical.com>
Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com>
2017-11-27 19:07:34 +08:00
|
|
|
$(srctree)/scripts/package/snapcraft.template > \
|
|
|
|
$(objtree)/snap/snapcraft.yaml
|
|
|
|
cd $(objtree)/snap && \
|
|
|
|
snapcraft --target-arch=$(UTS_MACHINE)
|
|
|
|
|
2023-02-15 09:20:31 +08:00
|
|
|
# dir-pkg tar*-pkg - tarball targets
|
2005-05-24 17:27:37 +08:00
|
|
|
# ---------------------------------------------------------------------------
|
2023-02-15 09:20:31 +08:00
|
|
|
|
|
|
|
tar-install: FORCE
|
|
|
|
$(Q)$(MAKE) -f $(srctree)/Makefile
|
|
|
|
+$(Q)$(srctree)/scripts/package/buildtar $@
|
|
|
|
|
2023-04-07 18:16:29 +08:00
|
|
|
compress-tar.gz = -I "$(KGZIP)"
|
|
|
|
compress-tar.bz2 = -I "$(KBZIP2)"
|
|
|
|
compress-tar.xz = -I "$(XZ)"
|
|
|
|
compress-tar.zst = -I "$(ZSTD)"
|
|
|
|
|
2023-03-15 23:50:18 +08:00
|
|
|
quiet_cmd_tar = TAR $@
|
2023-04-07 18:16:29 +08:00
|
|
|
cmd_tar = cd $<; tar cf ../$@ $(compress-tar$(suffix $@)) --owner=root --group=root --sort=name *
|
|
|
|
|
|
|
|
dir-tarballs := $(addprefix linux-$(KERNELRELEASE)-$(ARCH), .tar .tar.gz .tar.bz2 .tar.xz .tar.zst)
|
2023-03-15 23:50:18 +08:00
|
|
|
|
2023-04-07 18:16:29 +08:00
|
|
|
$(dir-tarballs): tar-install
|
2023-03-15 23:50:18 +08:00
|
|
|
$(call cmd,tar)
|
|
|
|
|
2023-02-15 09:20:31 +08:00
|
|
|
PHONY += dir-pkg
|
|
|
|
dir-pkg: tar-install
|
|
|
|
@echo "Kernel tree successfully created in $<"
|
|
|
|
|
2023-03-15 23:50:18 +08:00
|
|
|
PHONY += tar-pkg
|
|
|
|
tar-pkg: linux-$(KERNELRELEASE)-$(ARCH).tar
|
2023-02-15 09:20:31 +08:00
|
|
|
@:
|
|
|
|
|
2023-03-15 23:50:18 +08:00
|
|
|
tar%-pkg: linux-$(KERNELRELEASE)-$(ARCH).tar.% FORCE
|
|
|
|
@:
|
2005-05-24 17:27:37 +08:00
|
|
|
|
2023-02-15 09:20:30 +08:00
|
|
|
# perf-tar*-src-pkg - generate a source tarball with perf source
|
2010-05-31 22:13:21 +08:00
|
|
|
# ---------------------------------------------------------------------------
|
|
|
|
|
2023-03-15 23:50:18 +08:00
|
|
|
.tmp_perf:
|
|
|
|
$(Q)mkdir .tmp_perf
|
2023-02-15 09:20:30 +08:00
|
|
|
|
2023-03-15 23:50:18 +08:00
|
|
|
.tmp_perf/HEAD: .tmp_HEAD | .tmp_perf
|
|
|
|
$(call cmd,copy)
|
2023-02-15 09:20:30 +08:00
|
|
|
|
|
|
|
quiet_cmd_perf_version_file = GEN $@
|
|
|
|
cmd_perf_version_file = cd $(srctree)/tools/perf; util/PERF-VERSION-GEN $(dir $(abspath $@))
|
|
|
|
|
2023-03-15 23:50:18 +08:00
|
|
|
# PERF-VERSION-FILE and .tmp_HEAD are independent, but this avoids updating the
|
2023-02-15 09:20:30 +08:00
|
|
|
# timestamp of PERF-VERSION-FILE.
|
|
|
|
# The best is to fix tools/perf/util/PERF-VERSION-GEN.
|
2023-03-15 23:50:18 +08:00
|
|
|
.tmp_perf/PERF-VERSION-FILE: .tmp_HEAD $(srctree)/tools/perf/util/PERF-VERSION-GEN | .tmp_perf
|
2023-02-15 09:20:30 +08:00
|
|
|
$(call cmd,perf_version_file)
|
|
|
|
|
2023-04-07 18:16:27 +08:00
|
|
|
perf-archive-args = --add-file=$$(realpath $(word 2, $^)) \
|
2023-03-15 23:50:18 +08:00
|
|
|
--add-file=$$(realpath $(word 3, $^)) \
|
|
|
|
$$(cat $(word 2, $^))^{tree} $$(cat $<)
|
2023-02-15 09:20:30 +08:00
|
|
|
|
2023-04-07 18:16:28 +08:00
|
|
|
|
|
|
|
perf-tarballs := $(addprefix perf-$(KERNELVERSION), .tar .tar.gz .tar.bz2 .tar.xz .tar.zst)
|
|
|
|
|
|
|
|
targets += $(perf-tarballs)
|
2023-04-20 01:04:24 +08:00
|
|
|
$(perf-tarballs): archive-args = --prefix=perf-$(KERNELVERSION)/ $(perf-archive-args)
|
2023-04-07 18:16:28 +08:00
|
|
|
$(perf-tarballs): tools/perf/MANIFEST .tmp_perf/HEAD .tmp_perf/PERF-VERSION-FILE FORCE
|
2023-04-07 18:16:27 +08:00
|
|
|
$(call if_changed,archive)
|
2023-03-15 23:50:18 +08:00
|
|
|
|
|
|
|
PHONY += perf-tar-src-pkg
|
|
|
|
perf-tar-src-pkg: perf-$(KERNELVERSION).tar
|
|
|
|
@:
|
2023-02-15 09:20:30 +08:00
|
|
|
|
2023-03-15 23:50:18 +08:00
|
|
|
perf-tar%-src-pkg: perf-$(KERNELVERSION).tar.% FORCE
|
|
|
|
@:
|
2010-05-31 22:13:21 +08:00
|
|
|
|
2005-04-17 06:20:36 +08:00
|
|
|
# Help text displayed when executing 'make help'
|
|
|
|
# ---------------------------------------------------------------------------
|
2019-08-21 15:02:03 +08:00
|
|
|
PHONY += help
|
|
|
|
help:
|
2010-05-31 22:13:21 +08:00
|
|
|
@echo ' rpm-pkg - Build both source and binary RPM kernel packages'
|
2022-12-27 17:21:57 +08:00
|
|
|
@echo ' srcrpm-pkg - Build only the source kernel RPM package'
|
2015-09-02 17:57:24 +08:00
|
|
|
@echo ' binrpm-pkg - Build only the binary kernel RPM package'
|
|
|
|
@echo ' deb-pkg - Build both source and binary deb kernel packages'
|
2023-04-17 22:25:47 +08:00
|
|
|
@echo ' srcdeb-pkg - Build only the source kernel deb package'
|
2015-09-02 17:57:24 +08:00
|
|
|
@echo ' bindeb-pkg - Build only the binary kernel deb package'
|
2019-10-25 19:52:32 +08:00
|
|
|
@echo ' snap-pkg - Build only the binary kernel snap package'
|
|
|
|
@echo ' (will connect to external hosts)'
|
2019-11-04 21:11:44 +08:00
|
|
|
@echo ' dir-pkg - Build the kernel as a plain directory structure'
|
2010-05-31 22:13:21 +08:00
|
|
|
@echo ' tar-pkg - Build the kernel as an uncompressed tarball'
|
|
|
|
@echo ' targz-pkg - Build the kernel as a gzip compressed tarball'
|
|
|
|
@echo ' tarbz2-pkg - Build the kernel as a bzip2 compressed tarball'
|
2011-01-30 19:18:51 +08:00
|
|
|
@echo ' tarxz-pkg - Build the kernel as a xz compressed tarball'
|
2021-10-08 19:37:59 +08:00
|
|
|
@echo ' tarzst-pkg - Build the kernel as a zstd compressed tarball'
|
2023-02-15 09:20:30 +08:00
|
|
|
@echo ' perf-tar-src-pkg - Build the perf source tarball with no compression'
|
|
|
|
@echo ' perf-targz-src-pkg - Build the perf source tarball with gzip compression'
|
|
|
|
@echo ' perf-tarbz2-src-pkg - Build the perf source tarball with bz2 compression'
|
|
|
|
@echo ' perf-tarxz-src-pkg - Build the perf source tarball with xz compression'
|
|
|
|
@echo ' perf-tarzst-src-pkg - Build the perf source tarball with zst compression'
|
2019-08-21 15:02:04 +08:00
|
|
|
|
2023-02-15 09:20:24 +08:00
|
|
|
PHONY += FORCE
|
|
|
|
FORCE:
|
|
|
|
|
2023-03-15 23:50:18 +08:00
|
|
|
# Read all saved command lines and dependencies for the $(targets) we
|
|
|
|
# may be building above, using $(if_changed{,_dep}). As an
|
|
|
|
# optimization, we don't need to read them if the target does not
|
|
|
|
# exist, we will rebuild anyway in that case.
|
|
|
|
|
|
|
|
existing-targets := $(wildcard $(sort $(targets)))
|
|
|
|
|
|
|
|
-include $(foreach f,$(existing-targets),$(dir $(f)).$(notdir $(f)).cmd)
|
|
|
|
|
2019-08-21 15:02:04 +08:00
|
|
|
.PHONY: $(PHONY)
|