2013-04-23 03:03:39 +08: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
|
|
|
|
|
2017-07-12 20:49:45 +08:00
|
|
|
OBJECTS = start.o main.o bootmap.o sclp.o virtio.o virtio-scsi.o virtio-blkdev.o
|
2016-08-15 18:20:49 +08: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
|
|
|
|
QEMU_CFLAGS += $(call cc-option, $(QEMU_CFLAGS), -fno-stack-protector)
|
2015-03-09 18:12:53 +08:00
|
|
|
LDFLAGS += -Wl,-pie -nostdlib
|
2013-04-23 03:03:39 +08:00
|
|
|
|
|
|
|
build-all: s390-ccw.img
|
|
|
|
|
|
|
|
s390-ccw.elf: $(OBJECTS)
|
2016-10-05 00:27:21 +08:00
|
|
|
$(call quiet-command,$(CC) $(LDFLAGS) -o $@ $(OBJECTS),"BUILD","$(TARGET_DIR)$@")
|
2013-04-23 03:03:39 +08:00
|
|
|
|
2017-05-31 21:09:37 +08:00
|
|
|
STRIP ?= strip
|
|
|
|
|
2013-04-23 03:03:39 +08:00
|
|
|
s390-ccw.img: s390-ccw.elf
|
2017-05-31 21:09:37 +08:00
|
|
|
$(call quiet-command,$(STRIP) --strip-unneeded $< -o $@,"STRIP","$(TARGET_DIR)$@")
|
2015-03-09 18:12:53 +08:00
|
|
|
|
|
|
|
$(OBJECTS): Makefile
|
2013-04-23 03:03:39 +08:00
|
|
|
|
|
|
|
clean:
|
2013-04-23 09:23:05 +08:00
|
|
|
rm -f *.o *.d *.img *.elf *~
|