matos/Makefile

95 lines
2.6 KiB
Makefile
Raw Normal View History

2018-07-20 15:41:58 +02:00
# Used to generated .d file that deal with header dependencies
CPPFLAGS = -MMD
AS=nasm
ASFLAGS += -f elf32
2021-11-04 20:26:31 +01:00
LDFLAGS += -m elf_i386
2021-11-05 23:02:23 +01:00
CFLAGS += -m32 -Wall -Wextra -Werror -ffreestanding -fno-exceptions -fno-pie -fno-stack-protector -fno-tree-vectorize -D__KERNEL__
CXXFLAGS += -m32 -Wall -Wextra -Werror -ffreestanding -fno-exceptions -fno-rtti -fno-pie
DEBUG_FLAGS += -g -Og -DDEBUG -fno-omit-frame-pointer -fno-inline
2021-11-04 20:26:31 +01:00
LIBGCC = $(shell $(CC) -print-libgcc-file-name $(CFLAGS))
2018-07-20 15:41:58 +02:00
2021-10-05 22:01:13 +02:00
QEMU_OPT += -hda disk.img
2020-04-27 23:45:38 +02:00
ARCH?=x86
SUBDIRS := core drivers tests arch/$(ARCH)
2018-07-20 15:41:58 +02:00
INCDIRS += $(foreach dir, $(SUBDIRS), -I$(dir))
CPPFLAGS += $(INCDIRS)
2018-07-20 15:41:58 +02:00
2021-10-31 00:04:01 +02:00
asmsrc=
2018-07-20 15:41:58 +02:00
asmobj=$(asmsrc:%.asm=%.o)
2021-10-31 00:04:01 +02:00
gasmsrc=$(wildcard arch/$(ARCH)/*.S arch/$(ARCH)/boot/*.S)
gasmobj=$(gasmsrc:%.S=%.o)
2018-07-20 15:41:58 +02:00
csrc=$(shell find $(SUBDIRS) -type f -name "*.c")# $(wildcard *.c)
2021-10-31 00:04:01 +02:00
cobj=$(csrc:%.c=%.o)
deps=$(csrc:%.c=%.d) $(gasmsrc:%.S=%.d)
2022-09-03 23:04:31 +02:00
docsrc=$(wildcard docs/*.md)
docobj=$(docsrc:%.md=%.html)
2018-07-20 15:41:58 +02:00
2021-10-31 00:04:01 +02:00
kernel kernel.sym &: $(asmobj) $(gasmobj) $(cobj) linker.ld
2021-11-04 20:26:31 +01:00
$(LD) $(LDFLAGS) $(asmobj) $(gasmobj) $(cobj) -o kernel -T linker.ld $(LIBGCC)
objcopy --only-keep-debug kernel kernel.sym
objcopy --strip-debug kernel
2022-04-05 22:00:14 +02:00
objcopy --add-gnu-debuglink=kernel.sym kernel
2018-07-20 17:10:58 +02:00
2018-07-20 16:55:41 +02:00
fd.iso: kernel
mkdir -p isodir/boot/grub
cp $< isodir/boot/
@printf "menuentry \"myos\" {\n\tmultiboot /boot/kernel\n}" > isodir/boot/grub/grub.cfg
2018-07-20 16:55:41 +02:00
grub-mkrescue -o $@ isodir
2021-11-05 23:02:23 +01:00
userspace: FORCE
$(MAKE) -C userspace
FORCE:
@
2022-09-03 23:04:31 +02:00
doc: $(docobj)
2021-11-05 23:02:23 +01:00
disk.img: disk.sfdisk userspace
2021-11-04 20:14:48 +01:00
qemu-img create -f raw $@ 32M
2021-11-05 23:02:23 +01:00
sfdisk $@ < $<
# Before having filesystem support, just dump the user prog into the first partition
strip userspace/user -o userspace/user.strip
$(eval file_size:=$(shell du -b userspace/user.strip|awk '{print $$1}' | xargs printf "%016d" )) \
sed '1s/^/$(file_size)/' userspace/user.strip | dd of=disk.img seek=2048 bs=512
2018-07-20 15:41:58 +02:00
2021-11-04 20:26:31 +01:00
# NASM without preprocessing
2018-07-20 15:41:58 +02:00
%.o:%.asm
$(AS) $(ASFLAGS) -o $@ $<
2021-11-04 20:26:31 +01:00
#GNU GAS ASM with C Preprocessing
%.o: %.S
2021-10-31 00:04:01 +02:00
$(CC) $(CFLAGS) $(CPPFLAGS) -c "$<" -o "$@"
2022-09-03 23:04:31 +02:00
%.html: %.md
markdown -o $@ $<
2021-01-26 17:58:33 +01:00
test: CFLAGS += -DRUN_TEST
2021-10-05 22:07:17 +02:00
test: clean kernel disk.img
2021-10-05 22:01:13 +02:00
qemu-system-x86_64 -kernel kernel -serial stdio -m 32M $(QEMU_OPT)
2018-11-08 22:09:12 +01:00
2021-10-05 22:07:17 +02:00
run:kernel disk.img
2021-10-05 22:01:13 +02:00
qemu-system-x86_64 -kernel $< $(QEMU_OPT)
2018-07-20 15:41:58 +02:00
debug: CFLAGS += $(DEBUG_FLAGS)
2018-11-16 14:47:21 +01:00
debug: CXXFLAGS += $(DEBUG_FLAGS)
2021-11-05 23:02:23 +01:00
debug:kernel kernel.sym disk.img
2021-10-25 21:29:02 +02:00
gdb -q -x debug.gdb
2021-01-26 17:58:33 +01:00
debug_test: CFLAGS += $(DEBUG_FLAGS) -DRUN_TEST
debug_test: debug
2021-11-14 14:54:20 +01:00
screenshot:
shutter --window=qemu -o screenshot_1.png -e && zopflipng screenshot_1.png screenshot_1.png
2018-07-20 15:41:58 +02:00
clean:
2022-09-03 23:04:31 +02:00
$(RM) kernel $(asmobj) $(gasmobj) $(cobj) $(deps) fd.iso kernel.sym $(docobj)
2019-01-09 17:21:51 +01:00
$(RM) -r isodir
2018-07-20 15:41:58 +02:00
2021-11-05 23:02:23 +01:00
.PHONY:
2021-11-14 14:54:20 +01:00
userspace screenshot
2021-11-05 23:02:23 +01:00
2018-07-20 15:41:58 +02:00
ifneq ($(MAKECMDGOALS),clean)
-include $(deps)
endif