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