diff options
author | Luke Shumaker <lukeshu@sbcglobal.net> | 2014-12-28 19:56:26 -0500 |
---|---|---|
committer | Luke Shumaker <lukeshu@sbcglobal.net> | 2014-12-28 19:56:26 -0500 |
commit | bd2fdf0e616578ede630bd1dd9da5b74ea9b7d3a (patch) | |
tree | a3b1ebaa7c9ea2e572a179c32d4273cffd700a9b /Makefile | |
parent | 1bc0aef8870f3c378a29bd93544fec1ce0f4efa5 (diff) |
Convert the SeaBIOS script
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -13,12 +13,12 @@ romtypes = txtmode vesafb i945boards = x60 x60t t60 -build: PHONY \ - $(foreach board,$(boards),\ - $(foreach keymap,$(keymaps),\ - $(foreach romtype,$(romtypes),\ - bin/$(board)_$(keymap)_$(romtype).rom))) +roms = $(foreach board,$(boards),\ + $(foreach keymap,$(keymaps),\ + $(foreach romtype,$(romtypes),\ + $(board)_$(keymap)_$(romtype)))) +build: PHONY $(foreach rom,$(roms),bin/$(rom).rom bin/$(rom)_with_seabios.rom) define _nl @@ -54,6 +54,7 @@ include modules.mk include build.mk include grub-mkstandalone.mk include buildrom-withgrub.mk +include addseabios.mk |