This repository was archived by the owner on Jan 10, 2025. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
75 lines (59 loc) · 1.67 KB
/
Makefile
File metadata and controls
75 lines (59 loc) · 1.67 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
include scripts/config.mk
.PHONY: all floppy_image kernel bootloader clean always tools_fat
all: floppy_image tools_fat
include scripts/toolchain.mk
#
# Floppy image
#
floppy_image: $(BUILD_DIR)/main_floppy.img
$(BUILD_DIR)/main_floppy.img: bootloader kernel
@dd if=/dev/zero of=$@ bs=512 count=2880 >/dev/null
@mkfs.fat -F 12 -n "NBOS" $@ >/dev/null
@dd if=$(BUILD_DIR)/stage1.bin of=$@ conv=notrunc >/dev/null
@mcopy -i $@ $(BUILD_DIR)/stage2.bin "::stage2.bin"
@mcopy -i $@ $(BUILD_DIR)/kernel.bin "::kernel.bin"
@mcopy -i $@ $(TEST_DIR)/test.txt "::test.txt"
@mmd -i $@ "::mydir"
@mcopy -i $@ $(TEST_DIR)/test.txt "::mydir/test.txt"
@echo "--> Created: " $@
#
# Bootloader
#
bootloader: stage1 stage2
stage1: $(BUILD_DIR)/stage1.bin
$(BUILD_DIR)/stage1.bin: always
@$(MAKE) -C source/bootloader/stage1 BUILD_DIR=$(abspath $(BUILD_DIR))
stage2: $(BUILD_DIR)/stage2.bin
$(BUILD_DIR)/stage2.bin: always
@$(MAKE) -C source/bootloader/stage2 BUILD_DIR=$(abspath $(BUILD_DIR))
#
# Kernel
#
kernel: $(BUILD_DIR)/kernel.bin
$(BUILD_DIR)/kernel.bin: always
@$(MAKE) -C source/kernel BUILD_DIR=$(abspath $(BUILD_DIR))
#
# Tools
#
tools_fat: $(BUILD_DIR)/tools/fat
$(BUILD_DIR)/tools/fat: always tools/fat/fat.c
@mkdir -p $(BUILD_DIR)/tools
@$(MAKE) -C tools/fat BUILD_DIR=$(abspath $(BUILD_DIR))
#
# Always
#
always:
@mkdir -p $(BUILD_DIR)
#
# Clean
#
clean:
@$(MAKE) -C source/bootloader/stage1 BUILD_DIR=$(abspath $(BUILD_DIR)) clean
@$(MAKE) -C source/bootloader/stage2 BUILD_DIR=$(abspath $(BUILD_DIR)) clean
@$(MAKE) -C source/kernel BUILD_DIR=$(abspath $(BUILD_DIR)) clean
@rm -rf $(BUILD_DIR)/*
#
# Run
#
run: floppy_image
@qemu-system-i386 -fda ./build/main_floppy.img