hw/display/xlnx_dp: Free FIFOs adding xlnx_dp_finalize()
[qemu/ar7.git] / pc-bios / s390-ccw / Makefile
blob29fd9019b839e482a3c5c45a52e9d5022724541f
1 all: build-all
2 # Dummy command so that make thinks it has done something
3 @true
5 include ../../config-host.mak
6 CFLAGS = -O2 -g
8 quiet-command = $(if $(V),$1,$(if $(2),@printf " %-7s %s\n" $2 $3 && $1, @$1))
9 cc-option = $(if $(shell $(CC) $1 -S -o /dev/null -xc /dev/null > /dev/null \
10 2>&1 && echo OK), $1, $2)
12 VPATH_SUFFIXES = %.c %.h %.S %.m %.mak %.sh %.rc Kconfig% %.json.in
13 set-vpath = $(if $1,$(foreach PATTERN,$(VPATH_SUFFIXES),$(eval vpath $(PATTERN) $1)))
14 $(call set-vpath, $(SRC_PATH)/pc-bios/s390-ccw)
16 # Flags for dependency generation
17 QEMU_DGFLAGS = -MMD -MP -MT $@ -MF $(@D)/$(*F).d
19 %.o: %.c
20 $(call quiet-command,$(CC) $(QEMU_CFLAGS) $(QEMU_DGFLAGS) $(CFLAGS) \
21 -c -o $@ $<,"CC","$(TARGET_DIR)$@")
23 %.o: %.S
24 $(call quiet-command,$(CCAS) $(QEMU_CFLAGS) $(QEMU_DGFLAGS) $(CFLAGS) \
25 -c -o $@ $<,"CCAS","$(TARGET_DIR)$@")
27 .PHONY : all clean build-all
29 OBJECTS = start.o main.o bootmap.o jump2ipl.o sclp.o menu.o \
30 virtio.o virtio-scsi.o virtio-blkdev.o libc.o cio.o dasd-ipl.o
32 QEMU_CFLAGS := -Wall $(filter -W%, $(QEMU_CFLAGS))
33 QEMU_CFLAGS += -ffreestanding -fno-delete-null-pointer-checks -fno-common -fPIE
34 QEMU_CFLAGS += -fwrapv -fno-strict-aliasing -fno-asynchronous-unwind-tables
35 QEMU_CFLAGS += $(call cc-option, $(QEMU_CFLAGS), -fno-stack-protector)
36 QEMU_CFLAGS += -msoft-float -march=z900
37 QEMU_CFLAGS += -std=gnu99
38 LDFLAGS += -Wl,-pie -nostdlib
40 build-all: s390-ccw.img s390-netboot.img
42 s390-ccw.elf: $(OBJECTS)
43 $(call quiet-command,$(CC) $(LDFLAGS) -o $@ $(OBJECTS),"BUILD","$(TARGET_DIR)$@")
45 STRIP ?= strip
47 s390-ccw.img: s390-ccw.elf
48 $(call quiet-command,$(STRIP) --strip-unneeded $< -o $@,"STRIP","$(TARGET_DIR)$@")
50 $(OBJECTS): Makefile
52 ifneq ($(wildcard $(SRC_PATH)/roms/SLOF/lib/libnet),)
53 include $(SRC_PATH)/pc-bios/s390-ccw/netboot.mak
54 else
55 s390-netboot.img:
56 @echo "s390-netboot.img not built since roms/SLOF/ is not available."
57 endif
59 ALL_OBJS = $(sort $(OBJECTS) $(NETOBJS) $(LIBCOBJS) $(LIBNETOBJS))
60 -include $(ALL_OBJS:%.o=%.d)
62 clean:
63 rm -f *.o *.d *.img *.elf *~ *.a