0001-add-central-Makefile-in-main-directory.patch 1.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. From 81d850494c3cde1da33cc2df44837c839c1f2c60 Mon Sep 17 00:00:00 2001
  2. From: Leah Rowe <leah@libreboot.org>
  3. Date: Fri, 6 Oct 2023 23:17:06 +0100
  4. Subject: [PATCH 1/1] add central Makefile in main directory
  5. it only does build64. i'm disabling use of 32-bit memtest in lbmk,
  6. until i can figure out a more consistent cross-compile method,
  7. rather than relying on hostcc.
  8. a user on irc reported build issues on pop os
  9. it's not pop's fault. lbmk needs to start handling cross
  10. compilers properly. (alternatively, i could rig memtest86+
  11. to use crossgcc. i'll explore that later)
  12. Signed-off-by: Leah Rowe <leah@libreboot.org>
  13. ---
  14. Makefile | 11 +++++++++++
  15. 1 file changed, 11 insertions(+)
  16. create mode 100644 Makefile
  17. diff --git a/Makefile b/Makefile
  18. new file mode 100644
  19. index 0000000..59fcbef
  20. --- /dev/null
  21. +++ b/Makefile
  22. @@ -0,0 +1,11 @@
  23. +# SPDX-License-Identifier: MIT
  24. +# SPDX-FileCopyrightText: 2023 Leah Rowe <leah@libreboot.org>
  25. +
  26. +all:
  27. + make -C build64
  28. +
  29. +clean:
  30. + make -C build64 clean
  31. +
  32. +distclean:
  33. + make -C build64 clean
  34. --
  35. 2.39.2