1all: build-all 2# Dummy command so that make thinks it has done something 3 @true 4 5include ../../config-host.mak 6include $(SRC_PATH)/rules.mak 7 8$(call set-vpath, $(SRC_PATH)/pc-bios/s390-ccw) 9 10.PHONY : all clean build-all 11 12OBJECTS = start.o main.o bootmap.o sclp-ascii.o virtio.o 13CFLAGS += -fPIE -fno-stack-protector -ffreestanding 14LDFLAGS += -Wl,-pie -nostdlib 15 16build-all: s390-ccw.img 17 18s390-ccw.elf: $(OBJECTS) 19 $(call quiet-command,$(CC) $(LDFLAGS) -o $@ $(OBJECTS)," Building $(TARGET_DIR)$@") 20 21s390-ccw.img: s390-ccw.elf 22 $(call quiet-command,strip --strip-unneeded $< -o $@," Stripping $(TARGET_DIR)$@") 23 24$(OBJECTS): Makefile 25 26clean: 27 rm -f *.o *.d *.img *.elf *~ 28