Makefile 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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. #
  9. # This program is free software: you can redistribute it and/or modify
  10. # it under the terms of the GNU General Public License as published by
  11. # the Free Software Foundation, either version 3 of the License, or
  12. # (at your option) any later version.
  13. #
  14. # This program is distributed in the hope that it will be useful,
  15. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. # GNU General Public License for more details.
  18. #
  19. # You should have received a copy of the GNU General Public License
  20. # along with this program. If not, see <http://www.gnu.org/licenses/>.
  21. #
  22. .PHONY: all check download modules ich9m-descriptors payloads roms release \
  23. clean crossgcc-clean install-dependencies-ubuntu \
  24. install-dependencies-debian install-dependencies-arch \
  25. install-dependencies-void
  26. all: roms
  27. download:
  28. ./download all
  29. modules:
  30. ./build module all
  31. ich9m-descriptors:
  32. ./build descriptors ich9m
  33. payloads:
  34. ./build payload all
  35. roms:
  36. ./build boot roms all
  37. release:
  38. ./build release src
  39. ./build release roms
  40. clean:
  41. ./build clean cbutils
  42. ./build clean flashrom
  43. ./build clean ich9utils
  44. ./build clean payloads
  45. ./build clean seabios
  46. ./build clean grub
  47. ./build clean memtest86plus
  48. ./build clean rom_images
  49. crossgcc-clean:
  50. ./build clean crossgcc
  51. install-dependencies-ubuntu:
  52. ./build dependencies ubuntu2004
  53. install-dependencies-debian:
  54. ./build dependencies debian
  55. install-dependencies-arch:
  56. ./build dependencies arch
  57. install-dependencies-void:
  58. ./build dependencies void