diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 22 |
1 files changed, 8 insertions, 14 deletions
@@ -1,27 +1,21 @@ -all: initramfs.img amd-uc.img +all: initramfs.img initramfs.img: ./make -include initramfs.d -amd-uc.img: kernel/x86/microcode/AuthenticAMD.bin - echo $^ | bsdcpio -o -H newc -R 0:0 > $@ +install: install-initramfs.img -kernel/x86/microcode/AuthenticAMD.bin: /lib/firmware/amd-ucode/microcode_amd_fam17h.bin /lib/firmware/amd/amd_sev_fam17h_model0xh.sbin - mkdir -p $(@D) - cat $^ > $@ - -install: /boot/initramfs.img /boot/amd-uc.img - -/boot/initramfs.img: initramfs.img +install-initramfs.img: initramfs.img rm -f $@.old $@.new cp $< $@.new if [ -e $@ ]; then mv $@ $@.old; fi mv $@.new $@ -/boot/amd-uc.img: amd-uc.img - cp $< $@ - clean: - $(RM) -r initramfs.img initramfs.d amd-uc.img kernel + $(RM) -r initramfs.img initramfs.d kernel + +.PHONY: all install install-initramfs.img clean + +MAKEFLAGS = -L -R -r |