2021-05-02 19:23:50 +00:00
|
|
|
|
|
|
|
EMULATOR = qemu-system-i386
|
|
|
|
AS = ${HOME}/opt/cross/bin/i686-elf-as
|
|
|
|
CC = ${HOME}/opt/cross/bin/i686-elf-gcc
|
2021-05-10 20:33:25 +00:00
|
|
|
CPP = ${HOME}/opt/cross/bin/i686-elf-g++
|
2022-08-17 23:26:49 +00:00
|
|
|
CFLAGS = -ffreestanding -Og -ggdb -Wall -Wextra
|
2021-05-02 19:23:50 +00:00
|
|
|
|
2022-03-18 21:09:04 +00:00
|
|
|
OFILES =$(BUILD_DIR)/boot.o $(BUILD_DIR)/kterm.o $(BUILD_DIR)/kernel.o $(BUILD_DIR)/memory.o $(BUILD_DIR)/paging.o $(BUILD_DIR)/pit.o $(BUILD_DIR)/time.o $(BUILD_DIR)/keyboard.o $(BUILD_DIR)/io.o $(BUILD_DIR)/gdtc.o $(BUILD_DIR)/idt.o $(BUILD_DIR)/pic.o $(BUILD_DIR)/sv-terminal.o $(BUILD_DIR)/string.o
|
2021-05-02 19:23:50 +00:00
|
|
|
|
|
|
|
SRC_DIR = src
|
|
|
|
BUILD_DIR = build
|
|
|
|
|
|
|
|
CRTBEGIN_OBJ = $(shell $(CC) $(CFLAGS) -print-file-name=crtbegin.o)
|
|
|
|
CRTEND_OBJ = $(shell $(CC) $(CFLAGS) -print-file-name=crtend.o)
|
|
|
|
|
|
|
|
CRTI_OBJ = $(BUILD_DIR)/crti.o
|
|
|
|
CRTN_OBJ = $(BUILD_DIR)/crtn.o
|
|
|
|
OBJ_LINK_LIST = $(CRTI_OBJ) $(CRTBEGIN_OBJ) $(OFILES) $(CRTEND_OBJ) $(CRTN_OBJ)
|
|
|
|
INTERNAL_OBJS = $(CRTI_OBJ) $(OFILES) $(CRTN_OBJ)
|
|
|
|
|
|
|
|
|
2021-11-22 19:01:12 +00:00
|
|
|
all: clean build
|
2021-05-02 19:23:50 +00:00
|
|
|
|
2021-11-22 19:01:12 +00:00
|
|
|
build: build_kernel iso
|
2021-05-02 19:23:50 +00:00
|
|
|
|
2021-10-23 11:26:15 +00:00
|
|
|
clean_iso:
|
2021-11-22 19:01:12 +00:00
|
|
|
if [[ -a isodir/boot ]] ; then rm root/boot -rd ; fi
|
|
|
|
if [ -f build/barinkOS.iso ] ; then rm build/barinkOS.iso ; fi
|
2021-10-23 11:26:15 +00:00
|
|
|
|
2021-11-22 19:01:12 +00:00
|
|
|
iso: clean_iso clean build
|
|
|
|
mkdir -p root/boot/grub
|
|
|
|
cp build/myos.bin root/boot/myos.bin
|
|
|
|
cp src/grub.cfg root/boot/grub/grub.cfg
|
|
|
|
grub-mkrescue -o build/barinkOS.iso root
|
2021-10-23 11:26:15 +00:00
|
|
|
|
2021-12-29 15:15:18 +00:00
|
|
|
run: all
|
2022-08-17 23:26:49 +00:00
|
|
|
$(EMULATOR) -cdrom build/barinkOS.iso -serial stdio -vga std -display gtk -m 2G -cpu core2duo
|
|
|
|
|
|
|
|
debug: all
|
|
|
|
$(EMULATOR) -cdrom build/barinkOS.iso -serial stdio -vga std -display gtk -m 2G -cpu core2duo -s -d int
|
2021-05-10 20:33:25 +00:00
|
|
|
|
2021-05-02 19:23:50 +00:00
|
|
|
build_kernel: $(OBJ_LINK_LIST)
|
2021-11-16 12:57:15 +00:00
|
|
|
$(CC) -T $(SRC_DIR)/kernel//linker.ld -o $(BUILD_DIR)/myos.bin \
|
2022-08-17 23:26:49 +00:00
|
|
|
-ffreestanding -ggdb -Og -nostdlib $(OBJ_LINK_LIST) -lgcc
|
2021-05-02 19:23:50 +00:00
|
|
|
|
|
|
|
build_x86_64:
|
|
|
|
$(AS) $(SRC_DIR)/cgc/x86_64/crti.s -o $(BUILD_DIR)/crti_64.o
|
|
|
|
$(AS) $(SRC_DIR)/cgc/x86_64/crtn.s -o $(BUILD_DIR)/crtn.o
|
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -f $(BUILD_DIR)/myos.bin $(INTERNAL_OBJS)
|
|
|
|
|
|
|
|
$(BUILD_DIR)/kernel.o:
|
2021-05-10 20:33:25 +00:00
|
|
|
$(CPP) -c $(SRC_DIR)/kernel/kernel.cpp -o $(BUILD_DIR)/kernel.o $(CFLAGS) -fno-exceptions -fno-rtti
|
2021-05-02 19:23:50 +00:00
|
|
|
|
|
|
|
$(BUILD_DIR)/kterm.o:
|
2022-08-17 12:57:50 +00:00
|
|
|
$(CPP) -c $(SRC_DIR)/kernel/Terminal/kterm.cpp -o $(BUILD_DIR)/kterm.o $(CFLAGS) -fno-exceptions -fno-rtti
|
2021-05-02 19:23:50 +00:00
|
|
|
|
|
|
|
$(BUILD_DIR)/boot.o:
|
2022-08-17 12:57:50 +00:00
|
|
|
$(AS) $(SRC_DIR)/kernel/KernelLauncher/boot.s -o $(BUILD_DIR)/boot.o
|
2021-05-02 19:23:50 +00:00
|
|
|
|
|
|
|
$(BUILD_DIR)/crti.o:
|
2022-08-17 12:57:50 +00:00
|
|
|
$(AS) $(SRC_DIR)/kernel/KernelLauncher/crti.s -o $(BUILD_DIR)/crti.o
|
2021-05-02 19:23:50 +00:00
|
|
|
|
|
|
|
$(BUILD_DIR)/crtn.o:
|
2022-08-17 12:57:50 +00:00
|
|
|
$(AS) $(SRC_DIR)/kernel/KernelLauncher/crtn.s -o $(BUILD_DIR)/crtn.o
|
2021-05-10 20:33:25 +00:00
|
|
|
|
|
|
|
$(BUILD_DIR)/io.o:
|
|
|
|
$(CPP) -c $(SRC_DIR)/kernel/io.cpp -o $(BUILD_DIR)/io.o $(CFLAGS) -fno-exceptions -fno-rtti
|
2021-05-16 14:53:14 +00:00
|
|
|
|
|
|
|
|
2021-05-12 22:03:00 +00:00
|
|
|
$(BUILD_DIR)/idt.o:
|
2022-08-17 12:57:50 +00:00
|
|
|
$(CPP) -c $(SRC_DIR)/kernel/Interrupts/idt/idt.cpp -o $(BUILD_DIR)/idt.o $(CFLAGS) -fno-exceptions -fno-rtti
|
2021-05-16 14:53:14 +00:00
|
|
|
|
2021-11-06 20:56:42 +00:00
|
|
|
$(BUILD_DIR)/gdtc.o:
|
2022-08-17 12:57:50 +00:00
|
|
|
$(CPP) -c $(SRC_DIR)/kernel/Memory/GDT/gdtc.cpp -o $(BUILD_DIR)/gdtc.o $(CFLAGS) -fno-exceptions -fno-rtti
|
2021-11-06 20:56:42 +00:00
|
|
|
|
|
|
|
|
2021-05-16 14:53:14 +00:00
|
|
|
$(BUILD_DIR)/pic.o:
|
2022-08-17 12:57:50 +00:00
|
|
|
$(CPP) -c $(SRC_DIR)/kernel/Drivers/PIC/pic.cpp -o $(BUILD_DIR)/pic.o $(CFLAGS) -fno-exceptions -fno-rtti
|
2021-11-02 20:03:11 +00:00
|
|
|
|
|
|
|
$(BUILD_DIR)/string.o:
|
2022-08-17 12:57:50 +00:00
|
|
|
$(CC) -c $(SRC_DIR)/kernel/Lib/string.c -o $(BUILD_DIR)/string.o $(CFLAGS) -std=gnu99
|
2021-11-03 19:03:38 +00:00
|
|
|
|
2021-12-20 20:53:57 +00:00
|
|
|
|
|
|
|
$(BUILD_DIR)/pit.o:
|
2022-08-17 12:57:50 +00:00
|
|
|
$(CPP) -c $(SRC_DIR)/kernel/Drivers/PIT/pit.cpp -o $(BUILD_DIR)/pit.o $(CFLAGS) -fno-exceptions -fno-rtti
|
2021-12-28 18:47:32 +00:00
|
|
|
|
|
|
|
|
|
|
|
$(BUILD_DIR)/keyboard.o:
|
2022-08-17 12:57:50 +00:00
|
|
|
$(CPP) -c $(SRC_DIR)/kernel/Drivers/PS-2/keyboard.cpp -o $(BUILD_DIR)/keyboard.o $(CFLAGS) -fno-exceptions -fno-rtti
|
2021-12-29 15:15:18 +00:00
|
|
|
|
|
|
|
|
|
|
|
$(BUILD_DIR)/time.o:
|
|
|
|
$(CPP) -c $(SRC_DIR)/kernel/time.cpp -o $(BUILD_DIR)/time.o $(CFLAGS) -fno-exceptions -fno-rtti
|
|
|
|
|
|
|
|
$(BUILD_DIR)/sv-terminal.o:
|
2022-08-17 12:57:50 +00:00
|
|
|
$(CPP) -c $(SRC_DIR)/kernel/SuperVisorTerminal/superVisorTerminal.cpp -o $(BUILD_DIR)/sv-terminal.o $(CFLAGS) -fno-exceptions -fno-rtti
|
2022-02-26 19:44:16 +00:00
|
|
|
|
|
|
|
$(BUILD_DIR)/memory.o:
|
2022-08-17 12:57:50 +00:00
|
|
|
$(CPP) -c $(SRC_DIR)/kernel/Memory/memory.cpp -o $(BUILD_DIR)/memory.o $(CFLAGS) -fno-exceptions -fno-rtti
|
2022-03-18 21:09:04 +00:00
|
|
|
|
|
|
|
$(BUILD_DIR)/paging.o:
|
2022-08-17 12:57:50 +00:00
|
|
|
$(CPP) -c $(SRC_DIR)/kernel/Memory/paging.cpp -o $(BUILD_DIR)/paging.o $(CFLAGS) -fno-exceptions -fno-rtti
|