From 4e39d5a5a808b0d59c6fb3426e1d9bc0195d6b08 Mon Sep 17 00:00:00 2001 From: Leah Rowe Date: Fri, 6 Oct 2023 22:59:36 +0100 Subject: 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 --- ...01-add-central-Makefile-in-main-directory.patch | 40 ++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 config/memtest86plus/patches/0001-add-central-Makefile-in-main-directory.patch (limited to 'config/memtest86plus/patches/0001-add-central-Makefile-in-main-directory.patch') 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 +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 +--- + 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 ++ ++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 + -- cgit v1.2.1