Makefile 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. #
  2. # Makefile for compatibility purposes
  3. # You can use this, but it's recommended to run build system commands directly
  4. #
  5. # See docs/maintain/ and docs/git/ for information about the build system
  6. #
  7. # Copyright (C) 2020, 2021 Leah Rowe <info@minifree.org>
  8. # Copyright (C) 2022 Ferass El Hafidi <vitali64pmemail@protonmail.com>
  9. #
  10. # This program is free software: you can redistribute it and/or modify
  11. # it under the terms of the GNU General Public License as published by
  12. # the Free Software Foundation, either version 3 of the License, or
  13. # (at your option) any later version.
  14. #
  15. # This program is distributed in the hope that it will be useful,
  16. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. # GNU General Public License for more details.
  19. #
  20. # You should have received a copy of the GNU General Public License
  21. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  22. #
  23. .POSIX:
  24. #.PHONY: all check download modules ich9m-descriptors payloads roms release \
  25. # clean crossgcc-clean install-dependencies-ubuntu \
  26. # install-dependencies-debian install-dependencies-arch \
  27. # install-dependencies-void
  28. all: roms
  29. download:
  30. ./download all
  31. modules:
  32. ./build module all
  33. ich9m-descriptors:
  34. ./build descriptors ich9m
  35. payloads:
  36. ./build payload all
  37. roms:
  38. ./build boot roms all
  39. release:
  40. ./build release src
  41. ./build release roms
  42. clean:
  43. ./build clean cbutils
  44. ./build clean flashrom
  45. ./build clean ich9utils
  46. ./build clean payloads
  47. ./build clean seabios
  48. ./build clean grub
  49. ./build clean memtest86plus
  50. ./build clean rom_images
  51. crossgcc-clean:
  52. ./build clean crossgcc
  53. install-dependencies-ubuntu:
  54. ./build dependencies ubuntu2004
  55. install-dependencies-debian:
  56. ./build dependencies debian
  57. install-dependencies-arch:
  58. ./build dependencies arch
  59. install-dependencies-void:
  60. ./build dependencies void