2019-10-08 18:27:24 +03:00
|
|
|
CURRENT_MAKEFILE := $(realpath $(word $(words $(MAKEFILE_LIST)),$(MAKEFILE_LIST)))
|
|
|
|
SRC_DIR := $(dir $(CURRENT_MAKEFILE))
|
|
|
|
TOPSRC_DIR := $(SRC_DIR)/../..
|
|
|
|
VPATH = $(SRC_DIR)
|
|
|
|
|
|
|
|
all: multiboot.bin linuxboot.bin linuxboot_dma.bin kvmvapic.bin pvh.bin
|
2009-07-31 16:18:32 +04:00
|
|
|
# Dummy command so that make thinks it has done something
|
|
|
|
@true
|
2009-06-29 17:37:40 +04:00
|
|
|
|
|
|
|
include ../../config-host.mak
|
2020-08-31 15:36:27 +03:00
|
|
|
CFLAGS = -O2 -g
|
2009-12-21 12:06:55 +03:00
|
|
|
|
2019-10-08 18:27:24 +03:00
|
|
|
quiet-command = $(if $(V),$1,$(if $(2),@printf " %-7s %s\n" $2 $3 && $1, @$1))
|
2020-08-31 15:36:27 +03:00
|
|
|
cc-option = $(if $(shell $(CC) $1 -c -o /dev/null -xc /dev/null >/dev/null 2>&1 && echo OK), $1, $2)
|
2009-06-29 17:37:40 +04:00
|
|
|
|
2020-08-31 15:36:27 +03:00
|
|
|
override CFLAGS += -march=i486 -Wall
|
2016-08-09 23:50:40 +03:00
|
|
|
|
2019-10-08 18:27:24 +03:00
|
|
|
# Flags for dependency generation
|
|
|
|
override CPPFLAGS += -MMD -MP -MT $@ -MF $(@D)/$(*F).d
|
|
|
|
|
|
|
|
override CFLAGS += $(filter -W%, $(QEMU_CFLAGS))
|
|
|
|
override CFLAGS += $(CFLAGS_NOPIE) -ffreestanding -I$(TOPSRC_DIR)/include
|
|
|
|
override CFLAGS += $(call cc-option, -fno-stack-protector)
|
|
|
|
override CFLAGS += $(call cc-option, -m16)
|
|
|
|
|
|
|
|
ifeq ($(filter -m16, $(CFLAGS)),)
|
2016-05-23 21:11:33 +03:00
|
|
|
# Attempt to work around compilers that lack -m16 (GCC <= 4.8, clang <= ??)
|
|
|
|
# On GCC we add -fno-toplevel-reorder to keep the order of asm blocks with
|
|
|
|
# respect to the rest of the code. clang does not have -fno-toplevel-reorder,
|
|
|
|
# but it places all asm blocks at the beginning and we're relying on it for
|
|
|
|
# the option ROM header. So just force clang not to use the integrated
|
|
|
|
# assembler, which doesn't support .code16gcc.
|
2019-10-08 18:27:24 +03:00
|
|
|
override CFLAGS += $(call cc-option, -fno-toplevel-reorder)
|
|
|
|
override CFLAGS += $(call cc-option, -no-integrated-as)
|
|
|
|
override CFLAGS += -m32 -include $(SRC_DIR)/code16gcc.h
|
2016-05-23 21:11:33 +03:00
|
|
|
endif
|
|
|
|
|
|
|
|
Wa = -Wa,
|
2019-10-08 18:27:24 +03:00
|
|
|
override ASFLAGS += -32
|
|
|
|
override CFLAGS += $(call cc-option, $(Wa)-32)
|
2016-05-23 21:11:33 +03:00
|
|
|
|
2019-10-08 18:27:24 +03:00
|
|
|
LD_I386_EMULATION ?= elf_i386
|
|
|
|
override LDFLAGS = -m $(LD_I386_EMULATION) -T $(SRC_DIR)/flat.lds
|
2012-01-30 14:27:33 +04:00
|
|
|
|
2019-10-08 18:27:24 +03:00
|
|
|
all: multiboot.bin linuxboot.bin linuxboot_dma.bin kvmvapic.bin pvh.bin
|
|
|
|
|
|
|
|
pvh.img: pvh.o pvh_main.o
|
2016-05-23 21:11:33 +03:00
|
|
|
|
2016-07-08 07:49:36 +03:00
|
|
|
%.o: %.S
|
2019-10-08 18:27:24 +03:00
|
|
|
$(call quiet-command,$(CPP) $(CPPFLAGS) -c -o - $< | $(AS) $(ASFLAGS) -o $@,"AS","$@")
|
2016-05-23 21:11:33 +03:00
|
|
|
|
2019-10-08 18:27:24 +03:00
|
|
|
%.o: %.c
|
|
|
|
$(call quiet-command,$(CC) $(CPPFLAGS) $(CFLAGS) -c $< -o $@,"CC","$@")
|
2019-01-18 15:01:41 +03:00
|
|
|
|
2009-06-29 17:37:40 +04:00
|
|
|
%.img: %.o
|
2019-10-08 18:27:24 +03:00
|
|
|
$(call quiet-command,$(LD) $(LDFLAGS) -s -o $@ $^,"BUILD","$@")
|
2009-06-29 17:37:40 +04:00
|
|
|
|
2009-07-11 17:48:29 +04:00
|
|
|
%.raw: %.img
|
2019-10-08 18:27:24 +03:00
|
|
|
$(call quiet-command,$(OBJCOPY) -O binary -j .text $< $@,"BUILD","$@")
|
2009-07-11 17:48:29 +04:00
|
|
|
|
|
|
|
%.bin: %.raw
|
2019-10-08 18:27:24 +03:00
|
|
|
$(call quiet-command,$(PYTHON) $(TOPSRC_DIR)/scripts/signrom.py $< $@,"SIGN","$@")
|
|
|
|
|
|
|
|
include $(wildcard *.d)
|
2009-06-29 17:37:40 +04:00
|
|
|
|
|
|
|
clean:
|
2009-10-06 23:11:11 +04:00
|
|
|
rm -f *.o *.d *.raw *.img *.bin *~
|
2019-10-08 18:27:24 +03:00
|
|
|
|
|
|
|
# suppress auto-removal of intermediate files
|
|
|
|
.SECONDARY:
|
|
|
|
|
|
|
|
.PHONY: all clean
|