123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- .PHONY: all download modules ich9m-descriptors payloads roms release clean \
- crossgcc-clean install-dependencies-ubuntu
- all: roms
- download:
- ./download all
- modules:
- ./build module all
- ich9m-descriptors:
- ./build descriptors ich9m
- payloads:
- ./build payload all
- roms:
- ./build boot roms all
- release:
- ./build release src
- ./build release roms
- clean:
- ./build clean cbutils
- ./build clean flashrom
- ./build clean ich9utils
- ./build clean payloads
- ./build clean seabios
- ./build clean grub
- ./build clean memtest86plus
- ./build clean rom_images
- ./build clean tianocore
- crossgcc-clean:
- ./build clean crossgcc
- install-dependencies-ubuntu:
- ./build dependencies ubuntu2004
|