2009-06-29 15:37:40 +02:00
|
|
|
all: build-all
|
|
|
|
|
|
|
|
include ../../config-host.mak
|
2009-07-21 14:11:19 +02:00
|
|
|
include ../../rules.mak
|
2009-06-29 15:37:40 +02:00
|
|
|
|
|
|
|
VPATH=$(SRC_PATH)/pc-bios/optionrom
|
|
|
|
|
2009-07-21 14:11:19 +02:00
|
|
|
CPPFLAGS = -Wall -Wstrict-prototypes -Werror -fomit-frame-pointer -fno-builtin
|
|
|
|
CPPFLAGS += -I$(SRC_PATH)
|
2009-07-21 14:11:20 +02:00
|
|
|
CPPFLAGS += $(call cc-option, $(CFLAGS), -fno-stack-protector,"")
|
2009-06-29 15:37:40 +02:00
|
|
|
|
|
|
|
build-all: multiboot.bin
|
|
|
|
|
|
|
|
%.img: %.o
|
2009-07-21 14:11:19 +02:00
|
|
|
$(call quiet-command,$(LD) -Ttext 0 -e _start -s -o $@ $<," Building $(TARGET_DIR)$@")
|
2009-06-29 15:37:40 +02:00
|
|
|
|
2009-07-11 15:48:29 +02:00
|
|
|
%.raw: %.img
|
2009-07-21 14:11:19 +02:00
|
|
|
$(call quiet-command,$(OBJCOPY) -O binary -j .text $< $@," Building $(TARGET_DIR)$@")
|
2009-07-11 15:48:29 +02:00
|
|
|
|
|
|
|
%.bin: %.raw
|
2009-07-21 14:11:19 +02:00
|
|
|
$(call quiet-command,$(SRC_PATH)/pc-bios/optionrom/signrom.sh $< $@," Signing $(TARGET_DIR)$@")
|
2009-06-29 15:37:40 +02:00
|
|
|
|
|
|
|
clean:
|
2009-07-01 22:08:21 +02:00
|
|
|
$(RM) *.o *.img *.bin *~
|