d695918f7b
While container-based cross compilers are not supported, this already makes it possible to build vof on any machine that has an installation of GCC and binutils for 32- or 64-bit PowerPC. Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Paolo Bonzini <pbonzini@redhat.com> Message-Id: <20220517092616.1272238-16-pbonzini@redhat.com> Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Message-Id: <20220527153603.887929-27-alex.bennee@linaro.org>
25 lines
494 B
Makefile
25 lines
494 B
Makefile
include config.mak
|
|
VPATH=$(SRC_DIR)
|
|
all: vof.bin
|
|
|
|
CC ?= $(CROSS)gcc
|
|
LD ?= $(CROSS)ld
|
|
OBJCOPY ?= $(CROSS)objcopy
|
|
|
|
%.o: %.S
|
|
$(CC) -m32 -mbig-endian -mcpu=power4 -c -o $@ $<
|
|
|
|
%.o: %.c
|
|
$(CC) -m32 -mbig-endian -mcpu=power4 -c -fno-stack-protector -o $@ $<
|
|
|
|
vof.elf: entry.o main.o ci.o bootmem.o libc.o
|
|
$(LD) -nostdlib -e_start -T$(SRC_DIR)/vof.lds -EB -o $@ $^
|
|
|
|
%.bin: %.elf
|
|
$(OBJCOPY) -O binary -j .text -j .data -j .toc -j .got2 $^ $@
|
|
|
|
clean:
|
|
rm -f *.o vof.bin vof.elf *~
|
|
|
|
.PHONY: all clean
|