Remove CFLAGS parameter in cc-option
[qemu] / pc-bios / optionrom / Makefile
1 all: build-all
2 # Dummy command so that make thinks it has done something
3         @true
4
5 include ../../config-host.mak
6 include $(SRC_PATH)/rules.mak
7
8 VPATH=$(SRC_PATH)/pc-bios/optionrom
9
10 CFLAGS = -Wall -Wstrict-prototypes -Werror -fomit-frame-pointer -fno-builtin
11 CFLAGS += -I$(SRC_PATH)
12 CFLAGS += $(call cc-option, -fno-stack-protector,"")
13
14 build-all: multiboot.bin
15
16 %.img: %.o
17         $(call quiet-command,$(LD) -Ttext 0 -e _start -s -o $@ $<,"  Building $(TARGET_DIR)$@")
18
19 %.raw: %.img
20         $(call quiet-command,$(OBJCOPY) -O binary -j .text $< $@,"  Building $(TARGET_DIR)$@")
21
22 %.bin: %.raw
23         $(call quiet-command,$(SHELL) $(SRC_PATH)/pc-bios/optionrom/signrom.sh $< $@,"  Signing $(TARGET_DIR)$@")
24
25 clean:
26         $(RM) *.o *.img *.bin *~