build: fix recurse-all target
[qemu/ar7.git] / pc-bios / s390-ccw / Makefile
blob3eb785048a0f2eed78be9458e8d6257635b8bb5b
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 -msoft-float
34 QEMU_CFLAGS += -march=z900 -fPIE -fno-strict-aliasing
35 QEMU_CFLAGS += -fno-asynchronous-unwind-tables
36 QEMU_CFLAGS += $(call cc-option, $(QEMU_CFLAGS), -fno-stack-protector)
37 LDFLAGS += -Wl,-pie -nostdlib
39 build-all: s390-ccw.img s390-netboot.img
41 s390-ccw.elf: $(OBJECTS)
42 $(call quiet-command,$(CC) $(LDFLAGS) -o $@ $(OBJECTS),"BUILD","$(TARGET_DIR)$@")
44 STRIP ?= strip
46 s390-ccw.img: s390-ccw.elf
47 $(call quiet-command,$(STRIP) --strip-unneeded $< -o $@,"STRIP","$(TARGET_DIR)$@")
49 $(OBJECTS): Makefile
51 ifneq ($(wildcard $(SRC_PATH)/roms/SLOF/lib/libnet),)
52 include $(SRC_PATH)/pc-bios/s390-ccw/netboot.mak
53 else
54 s390-netboot.img:
55 @echo "s390-netboot.img not built since roms/SLOF/ is not available."
56 endif
58 ALL_OBJS = $(sort $(OBJECTS) $(NETOBJS) $(LIBCOBJS) $(LIBNETOBJS))
59 -include $(ALL_OBJS:%.o=%.d)
61 clean:
62 rm -f *.o *.d *.img *.elf *~ *.a