2018-12-10 17:03:52 +01:00
|
|
|
GCC=gcc -O0 -g -nostdinc -ffreestanding -fno-builtin -Wall -w -I ../include -m32 -fno-pie -no-pie -c -o
|
2018-12-15 19:13:26 +01:00
|
|
|
ASM=gcc -nostdinc -ffreestanding -fno-builtin -m32 -c -fno-pie -no-pie
|
2018-12-27 14:24:47 +01:00
|
|
|
LINK=ld -m elf_i386 -n -o
|
2018-12-12 12:31:30 +01:00
|
|
|
CONVERT=dos2unix
|
|
|
|
INDENT=indent -nhnl -l75 -ppi3 -ts8 -bls -nbc -di8 -nbad -nbap -nsob -i8 -bl -bli0 -ncdw -nce -cli8 -cbi0 -npcs -cs -saf -sai -saw -nprs -lp -npsl
|
|
|
|
REMOVE=rm -f
|
|
|
|
CHANGEPERM=chmod 644
|
2018-12-30 12:25:20 +01:00
|
|
|
NM=nm
|
|
|
|
ZOFFSET=sed -e 's/^\([0-9a-fA-F]*\) [ABCDGRSTVW] \(startup_32\|startup_64\|efi32_stub_entry\|efi64_stub_entry\|efi_pe_entry\|input_data\|_end\|_ehead\|_text\|z_.*\)$$/\#define ZO_\2 0x\1/p'
|
|
|
|
VOFFSET=sed -e 's/^\([0-9a-fA-F]*\) [ABCDGRSTVW] \(_text\|__bss_start\|_end\)$$/\#define VO_\2 _AC(0x\1,UL)/p'
|
2007-04-02 14:52:01 +02:00
|
|
|
|
2018-12-27 14:24:47 +01:00
|
|
|
all: system.sys
|
|
|
|
|
2018-12-30 12:25:20 +01:00
|
|
|
system.sys: realmode/setup.bin system.bin
|
|
|
|
$(NM) system.bin|$VOFFSET>voffset.h
|
|
|
|
$(NM) setup.bin|$ZOFFSET>zoffset.h
|
2018-12-27 14:24:47 +01:00
|
|
|
tools/build setup.bin system.bin zoffset.h system.sys
|
2007-04-02 14:52:01 +02:00
|
|
|
sync
|
|
|
|
|
2018-12-12 12:37:19 +01:00
|
|
|
togit: clean indent
|
2018-12-12 12:31:30 +01:00
|
|
|
|
2018-12-27 14:24:47 +01:00
|
|
|
system.bin: system.o ../lib/libs.o
|
2018-12-30 12:25:20 +01:00
|
|
|
$(LINK) -T system.ld system.o ../lib/libs.o
|
2018-09-27 17:12:12 +02:00
|
|
|
|
2018-12-30 12:25:20 +01:00
|
|
|
realmode/setup.bin:
|
|
|
|
make -C realmode
|
2018-12-27 14:24:47 +01:00
|
|
|
|
|
|
|
system.o:
|
|
|
|
$(GCC) $@ $^
|
2007-04-02 14:52:01 +02:00
|
|
|
|
|
|
|
clean:
|
2018-12-30 12:25:20 +01:00
|
|
|
make -C realmode clean
|
2018-12-12 12:31:30 +01:00
|
|
|
$(REMOVE) *.o
|
|
|
|
$(REMOVE) *.out
|
|
|
|
$(REMOVE) *.bin
|
|
|
|
$(REMOVE) *.sys
|
|
|
|
$(REMOVE) *.s
|
|
|
|
$(REMOVE) *.c~
|
|
|
|
sync
|
2007-04-02 14:52:01 +02:00
|
|
|
|
2018-12-12 12:31:30 +01:00
|
|
|
indent:
|
2018-12-30 12:25:20 +01:00
|
|
|
make -C realmode indent
|
2018-12-12 12:31:30 +01:00
|
|
|
$(CHANGEPERM) *.c
|
|
|
|
$(CONVERT) *.c
|
|
|
|
$(INDENT) *.c
|
2018-12-12 12:37:19 +01:00
|
|
|
$(REMOVE) *.c~
|
2018-12-12 12:31:30 +01:00
|
|
|
sync
|