Makefile 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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 download modules ich9m-descriptors payloads roms release clean \
  23. crossgcc-clean install-dependencies-ubuntu install-dependencies-debian \
  24. install-dependencies-arch install-dependencies-void
  25. all: roms
  26. download:
  27. ./download all
  28. modules:
  29. ./build module all
  30. ich9m-descriptors:
  31. ./build descriptors ich9m
  32. payloads:
  33. ./build payload all
  34. roms:
  35. ./build boot roms all
  36. release:
  37. ./build release src
  38. ./build release roms
  39. clean:
  40. ./build clean cbutils
  41. ./build clean flashrom
  42. ./build clean ich9utils
  43. ./build clean payloads
  44. ./build clean seabios
  45. ./build clean grub
  46. ./build clean memtest86plus
  47. ./build clean rom_images
  48. crossgcc-clean:
  49. ./build clean crossgcc
  50. install-dependencies-ubuntu:
  51. ./build dependencies ubuntu2004
  52. install-dependencies-debian:
  53. ./build dependencies debian
  54. install-dependencies-arch:
  55. ./build dependencies arch
  56. install-dependencies-void:
  57. ./build dependencies void