pc-bios/s390-ccw/net: Use diag308 to reset machine before jumping to the OS
[qemu.git] / pc-bios / s390-ccw / Makefile
blob439e3cc9c9419aa3dbecbabe5a0d235ca57ec758
1 all: build-all
2 # Dummy command so that make thinks it has done something
3 @true
5 include ../../config-host.mak
6 include $(SRC_PATH)/rules.mak
8 $(call set-vpath, $(SRC_PATH)/pc-bios/s390-ccw)
10 .PHONY : all clean build-all
12 OBJECTS = start.o main.o bootmap.o jump2ipl.o sclp.o menu.o \
13 virtio.o virtio-scsi.o virtio-blkdev.o libc.o
15 QEMU_CFLAGS := $(filter -W%, $(QEMU_CFLAGS))
16 QEMU_CFLAGS += -ffreestanding -fno-delete-null-pointer-checks -msoft-float
17 QEMU_CFLAGS += -march=z900 -fPIE -fno-strict-aliasing
18 QEMU_CFLAGS += $(call cc-option, $(QEMU_CFLAGS), -fno-stack-protector)
19 LDFLAGS += -Wl,-pie -nostdlib
21 build-all: s390-ccw.img s390-netboot.img
23 s390-ccw.elf: $(OBJECTS)
24 $(call quiet-command,$(CC) $(LDFLAGS) -o $@ $(OBJECTS),"BUILD","$(TARGET_DIR)$@")
26 STRIP ?= strip
28 s390-ccw.img: s390-ccw.elf
29 $(call quiet-command,$(STRIP) --strip-unneeded $< -o $@,"STRIP","$(TARGET_DIR)$@")
31 $(OBJECTS): Makefile
33 ifneq ($(wildcard $(SRC_PATH)/roms/SLOF/lib/libnet),)
34 include $(SRC_PATH)/pc-bios/s390-ccw/netboot.mak
35 else
36 s390-netboot.img:
37 @echo "s390-netboot.img not built since roms/SLOF/ is not available."
38 endif
40 clean:
41 rm -f *.o *.d *.img *.elf *~ *.a