rulimine/stage23/Makefile

82 lines
2.1 KiB
Makefile
Raw Normal View History

CC = i386-elf-gcc
LD = i386-elf-gcc
OBJCOPY = i386-elf-objcopy
2020-11-15 19:56:10 +03:00
OBJDUMP = i386-elf-objdump
2021-02-21 01:04:06 +03:00
READELF = i386-elf-readelf
BUILD_ID := $(shell dd if=/dev/urandom count=8 bs=1 | od -An -t x8 | sed 's/^ /0x/')
2021-02-23 03:16:12 +03:00
LIMINE_VERSION := $(shell git describe --exact-match --tags `git log -n1 --pretty='%h'` || git log -n1 --pretty='%h')
2020-10-18 07:23:39 +03:00
WERROR = -Werror
2020-11-15 19:56:10 +03:00
CFLAGS = -Os -pipe -Wall -Wextra $(WERROR)
2020-09-13 15:36:18 +03:00
INTERNAL_CFLAGS = \
2020-09-17 15:37:22 +03:00
-std=gnu11 \
-fplan9-extensions \
-ffreestanding \
2020-09-13 15:36:18 +03:00
-fno-stack-protector \
-fno-pic \
2020-11-15 19:56:10 +03:00
-fno-omit-frame-pointer \
2020-09-21 13:46:42 +03:00
-Wno-address-of-packed-member \
-masm=intel \
2020-08-25 00:35:06 +03:00
-mno-80387 \
-mno-mmx \
2020-09-14 20:32:11 +03:00
-mno-3dnow \
-mno-sse \
-mno-sse2 \
2020-09-21 13:46:42 +03:00
-MMD \
-DBUILD_ID=$(BUILD_ID) \
-DLIMINE_VERSION='"$(LIMINE_VERSION)"' \
2020-04-29 17:53:05 +03:00
-I. \
2020-09-21 13:46:42 +03:00
-I..
2020-11-15 19:56:10 +03:00
LDFLAGS = -Os
2020-09-13 15:36:18 +03:00
INTERNAL_LDFLAGS = \
2020-09-13 15:36:18 +03:00
-lgcc \
-static-libgcc \
-nostdlib \
2020-09-13 15:36:18 +03:00
-no-pie \
-z max-page-size=0x1000 \
2021-02-25 03:24:54 +03:00
-static
.PHONY: all clean
C_FILES := $(shell find -L ./ -type f -name '*.c' | sort)
ASM_FILES := $(shell find -L ./ -type f -name '*.asm' | sort)
2020-09-13 15:36:18 +03:00
OBJ := $(ASM_FILES:.asm=.o) $(C_FILES:.c=.o)
2020-09-21 13:46:42 +03:00
HEADER_DEPS := $(C_FILES:.c=.d)
2021-02-25 03:24:54 +03:00
all: limine.sys stage2.bin stage2.bin.gz
2021-02-22 22:43:51 +03:00
stage2.bin.gz: stage2.bin
gzip -n -9 < stage2.bin > stage2.bin.gz
2021-02-21 01:04:06 +03:00
2021-02-25 03:24:54 +03:00
stage2.bin: limine.sys
dd if=limine.sys bs=$$(( 0x$$($(READELF) -S limine.elf | grep .stage3.text | sed 's/^.*] //' | awk '{print $$3}' | sed 's/^0*//') - 0x8000 )) count=1 of=$@
2021-02-21 01:04:06 +03:00
2021-02-25 03:24:54 +03:00
limine.map.o: limine_nomap.elf
./gensyms.sh $(OBJDUMP) limine_nomap.elf limine
2021-02-25 03:24:54 +03:00
limine.sys: limine.elf
2020-11-15 19:56:10 +03:00
$(OBJCOPY) -O binary $< $@
2021-02-25 03:24:54 +03:00
limine_nomap.elf: $(OBJ)
$(LD) $(OBJ) $(LDFLAGS) $(INTERNAL_LDFLAGS) -Wl,--gc-sections -Tlinker_stage2only.ld -o $@ || \
( echo "This error means that stage2 was trying to use stage3 symbols before loading stage 3" && \
false )
2021-02-25 03:24:54 +03:00
$(LD) $(OBJ) $(LDFLAGS) $(INTERNAL_LDFLAGS) -Tlinker_nomap.ld -o $@
limine.elf: $(OBJ) limine.map.o
$(LD) $(OBJ) limine.map.o $(LDFLAGS) $(INTERNAL_LDFLAGS) -Tlinker.ld -o $@
2020-09-21 13:46:42 +03:00
-include $(HEADER_DEPS)
2020-09-13 15:36:18 +03:00
%.o: %.c
$(CC) $(CFLAGS) $(INTERNAL_CFLAGS) -c $< -o $@
%.o: %.asm
nasm $< -f elf32 -o $@
clean:
2021-02-25 03:47:48 +03:00
rm -f limine.elf limine_nomap.elf limine.map.o limine.sys stage2.bin stage2.bin.gz $(OBJ) $(HEADER_DEPS)