rulimine/test/GNUmakefile

140 lines
3.1 KiB
Makefile
Raw Normal View History

include $(TOOLCHAIN_FILE)
export CC_FOR_TARGET
export LD_FOR_TARGET
export OBJDUMP_FOR_TARGET
export OBJCOPY_FOR_TARGET
export READELF_FOR_TARGET
2021-07-25 15:48:58 +03:00
override CC := $(CC_FOR_TARGET)
CFLAGS = -O2 -g -Wall -Wextra -DFLANTERM_FB_SUPPORT_BPP
LDFLAGS =
override LD := $(LD_FOR_TARGET)
override QEMU := qemu-system-x86_64
QEMUFLAGS = -m 1G -enable-kvm -cpu host
ifneq ($(findstring x86_64,$(shell $(CC_FOR_TARGET) -dumpmachine)),)
2023-08-04 17:54:24 +03:00
override LDFLAGS += \
-m elf_x86_64
endif
ifneq ($(findstring aarch64,$(shell $(CC_FOR_TARGET) -dumpmachine)),)
2023-08-04 17:54:24 +03:00
override LDFLAGS += \
-m aarch64elf
endif
ifneq ($(findstring riscv64,$(shell $(CC_FOR_TARGET) -dumpmachine)),)
2023-08-04 17:54:24 +03:00
override LDFLAGS += \
-m elf64lriscv
endif
override LDFLAGS += \
-Tlinker.ld \
-nostdlib \
-zmax-page-size=0x1000 \
-static \
-pie \
--no-dynamic-linker \
-ztext
override LDFLAGS_MB2 := \
-m elf_i386 \
-Tmultiboot2.ld \
-nostdlib \
-zmax-page-size=0x1000 \
-static
override LDFLAGS_MB1 := \
-m elf_i386 \
-Tmultiboot.ld \
-nostdlib \
-zmax-page-size=0x1000 \
-static
override CFLAGS += \
-std=c11 \
-nostdinc \
-ffreestanding \
-fno-stack-protector \
-fno-stack-check \
-fno-lto \
-fPIE \
-I../freestanding-headers \
-I. \
2023-08-04 15:56:07 +03:00
-D_LIMINE_PROTO
ifneq ($(findstring x86_64,$(shell $(CC_FOR_TARGET) -dumpmachine)),)
2023-08-04 17:54:24 +03:00
override CFLAGS += \
-m64 \
-march=x86-64 \
-mgeneral-regs-only \
-mno-red-zone
endif
ifneq ($(findstring aarch64,$(shell $(CC_FOR_TARGET) -dumpmachine)),)
2023-08-04 17:54:24 +03:00
override CFLAGS += \
-mgeneral-regs-only
endif
ifneq ($(findstring riscv64,$(shell $(CC_FOR_TARGET) -dumpmachine)),)
2023-08-04 17:54:24 +03:00
override CFLAGS += \
-march=rv64imac \
-mabi=lp64 \
-mno-relax
override LDFLAGS += \
--no-relax
endif
override CFLAGS_MB := \
-std=c11 \
-nostdinc \
-ffreestanding \
-fno-stack-protector \
-fno-stack-check \
-fno-lto \
-fno-PIE \
-fno-PIC \
-m32 \
-march=i686 \
-mgeneral-regs-only \
-I../freestanding-headers \
-I. \
-I../common/protos
ifneq ($(findstring 86,$(shell $(CC_FOR_TARGET) -dumpmachine)),)
all: test.elf multiboot2.elf multiboot.elf
else
all: test.elf
endif
2023-08-04 15:56:07 +03:00
flanterm:
mkdir -p flanterm
cp -rv ../common/flanterm/* ./flanterm/
2023-08-04 17:54:24 +03:00
limine.h:
cp -v ../limine.h ./
2023-08-04 15:56:07 +03:00
test.elf: limine.o e9print.o memory.o flanterm/flanterm.o flanterm/backends/fb.o
2023-08-04 17:54:24 +03:00
$(LD) $^ $(LDFLAGS) -o $@
multiboot2.elf: multiboot2_trampoline.o
2023-08-04 17:54:24 +03:00
$(CC) $(CFLAGS_MB) -c memory.c -o memory.o
$(CC) $(CFLAGS_MB) -c multiboot2.c -o multiboot2.o
$(CC) $(CFLAGS_MB) -c e9print.c -o e9print.o
$(LD) $^ memory.o multiboot2.o e9print.o $(LDFLAGS_MB2) -o $@
multiboot.elf: multiboot_trampoline.o
2023-08-04 17:54:24 +03:00
$(CC) $(CFLAGS_MB) -c memory.c -o memory.o
$(CC) $(CFLAGS_MB) -c multiboot.c -o multiboot.o
$(CC) $(CFLAGS_MB) -c e9print.c -o e9print.o
$(LD) $^ memory.o multiboot.o e9print.o $(LDFLAGS_MB1) -o $@
2023-08-04 17:54:24 +03:00
%.o: %.c flanterm limine.h
$(CC) $(CFLAGS) -c $< -o $@
%.o: %.asm
nasm -felf32 -F dwarf -g $< -o $@
clean:
rm -rf test.elf limine.o e9print.o memory.o
2021-11-19 17:17:37 +03:00
rm -rf multiboot2.o multiboot2.elf multiboot2_trampoline.o
rm -rf multiboot.o multiboot_trampoline.o multiboot.elf
2023-08-04 17:54:24 +03:00
rm -rf flanterm limine.h