diff options
author | Leah Rowe <leah@libreboot.org> | 2023-10-06 22:59:36 +0100 |
---|---|---|
committer | Leah Rowe <leah@libreboot.org> | 2023-10-07 00:11:21 +0100 |
commit | 4e39d5a5a808b0d59c6fb3426e1d9bc0195d6b08 (patch) | |
tree | 26ccd90ebffb18c70132e6192f27bac1c4c3522c /config/memtest86plus/patches/0001-add-central-Makefile-in-main-directory.patch | |
parent | 965b6a7ed73f1dbd78a353c83b99a88b50c86f38 (diff) |
put all src downloads under src/
build/release/src was partly re-written to accomodate this
memtest86plus was patched to have a central Makefile, and
lbmk modified to use that, rather than mess with build32
and build64. the central Makefile just builds both targets
or cleans both targets
Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'config/memtest86plus/patches/0001-add-central-Makefile-in-main-directory.patch')
-rw-r--r-- | config/memtest86plus/patches/0001-add-central-Makefile-in-main-directory.patch | 40 |
1 files changed, 40 insertions, 0 deletions
diff --git a/config/memtest86plus/patches/0001-add-central-Makefile-in-main-directory.patch b/config/memtest86plus/patches/0001-add-central-Makefile-in-main-directory.patch new file mode 100644 index 00000000..7a54c102 --- /dev/null +++ b/config/memtest86plus/patches/0001-add-central-Makefile-in-main-directory.patch @@ -0,0 +1,40 @@ +From 1727cb88a183a9e787e359e42c0a499917ba495b Mon Sep 17 00:00:00 2001 +From: Leah Rowe <leah@libreboot.org> +Date: Fri, 6 Oct 2023 23:17:06 +0100 +Subject: [PATCH 1/1] add central Makefile in main directory + +it just runs the Makefiles in build32 and build64 + +all, clean and distclean(runs clean) are supported + +this makes memtest86plus integrate easier in lbmk + +Signed-off-by: Leah Rowe <leah@libreboot.org> +--- + Makefile | 14 ++++++++++++++ + 1 file changed, 14 insertions(+) + create mode 100644 Makefile + +diff --git a/Makefile b/Makefile +new file mode 100644 +index 0000000..50f2d58 +--- /dev/null ++++ b/Makefile +@@ -0,0 +1,14 @@ ++# SPDX-License-Identifier: MIT ++# SPDX-FileCopyrightText: 2023 Leah Rowe <leah@libreboot.org> ++ ++all: ++ make -C build32 ++ make -C build64 ++ ++clean: ++ make -C build32 clean ++ make -C build64 clean ++ ++distclean: ++ make -C build32 clean ++ make -C build64 clean +-- +2.39.2 + |