2013-04-22 19:03:39 +00:00
|
|
|
all: build-all
|
|
|
|
# Dummy command so that make thinks it has done something
|
|
|
|
@true
|
|
|
|
|
|
|
|
include ../../config-host.mak
|
|
|
|
include $(SRC_PATH)/rules.mak
|
|
|
|
|
|
|
|
$(call set-vpath, $(SRC_PATH)/pc-bios/s390-ccw)
|
|
|
|
|
|
|
|
.PHONY : all clean build-all
|
|
|
|
|
2018-04-20 09:30:42 +00:00
|
|
|
OBJECTS = start.o main.o bootmap.o jump2ipl.o sclp.o menu.o \
|
2019-04-04 14:34:24 +00:00
|
|
|
virtio.o virtio-scsi.o virtio-blkdev.o libc.o cio.o
|
2018-04-20 09:30:42 +00:00
|
|
|
|
2016-08-15 10:20:49 +00:00
|
|
|
QEMU_CFLAGS := $(filter -W%, $(QEMU_CFLAGS))
|
|
|
|
QEMU_CFLAGS += -ffreestanding -fno-delete-null-pointer-checks -msoft-float
|
|
|
|
QEMU_CFLAGS += -march=z900 -fPIE -fno-strict-aliasing
|
2018-06-14 08:38:22 +00:00
|
|
|
QEMU_CFLAGS += -fno-asynchronous-unwind-tables
|
2016-08-15 10:20:49 +00:00
|
|
|
QEMU_CFLAGS += $(call cc-option, $(QEMU_CFLAGS), -fno-stack-protector)
|
2015-03-09 10:12:53 +00:00
|
|
|
LDFLAGS += -Wl,-pie -nostdlib
|
2013-04-22 19:03:39 +00:00
|
|
|
|
2017-07-12 12:49:51 +00:00
|
|
|
build-all: s390-ccw.img s390-netboot.img
|
2013-04-22 19:03:39 +00:00
|
|
|
|
|
|
|
s390-ccw.elf: $(OBJECTS)
|
2016-10-04 16:27:21 +00:00
|
|
|
$(call quiet-command,$(CC) $(LDFLAGS) -o $@ $(OBJECTS),"BUILD","$(TARGET_DIR)$@")
|
2013-04-22 19:03:39 +00:00
|
|
|
|
2017-05-31 13:09:37 +00:00
|
|
|
STRIP ?= strip
|
|
|
|
|
2013-04-22 19:03:39 +00:00
|
|
|
s390-ccw.img: s390-ccw.elf
|
2017-05-31 13:09:37 +00:00
|
|
|
$(call quiet-command,$(STRIP) --strip-unneeded $< -o $@,"STRIP","$(TARGET_DIR)$@")
|
2015-03-09 10:12:53 +00:00
|
|
|
|
|
|
|
$(OBJECTS): Makefile
|
2013-04-22 19:03:39 +00:00
|
|
|
|
2017-07-12 12:49:51 +00:00
|
|
|
ifneq ($(wildcard $(SRC_PATH)/roms/SLOF/lib/libnet),)
|
|
|
|
include $(SRC_PATH)/pc-bios/s390-ccw/netboot.mak
|
|
|
|
else
|
|
|
|
s390-netboot.img:
|
|
|
|
@echo "s390-netboot.img not built since roms/SLOF/ is not available."
|
|
|
|
endif
|
|
|
|
|
2013-04-22 19:03:39 +00:00
|
|
|
clean:
|
2017-08-14 20:44:50 +00:00
|
|
|
rm -f *.o *.d *.img *.elf *~ *.a
|