This repository was archived by the owner on Feb 14, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathMakefile
85 lines (57 loc) · 1.56 KB
/
Makefile
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
76
77
78
79
80
81
82
83
84
85
BUILD = debug
VERSION := $(shell git describe --tags --always || echo '?')
# Build
NASM = nasm
LD = ld
NASM_FLAGS = -f elf32 -i src/ -d VERSION=$(VERSION)
LD_FLAGS = -m elf_i386 -nostdlib -T linker.ld
ifneq (,$(findstring debug,$(BUILD)))
override NASM_FLAGS += -g -d DEBUG
endif
ifneq (,$(findstring test,$(BUILD)))
override NASM_FLAGS += -d TEST
endif
KERNEL = tetrasm.elf
SOURCES = $(wildcard src/*.asm)
OBJECTS = $(SOURCES:%.asm=%.o)
kernel: $(KERNEL)
$(KERNEL): linker.ld $(OBJECTS)
$(LD) $(LD_FLAGS) $^ -o $@
%.o: %.asm
$(NASM) $(NASM_FLAGS) $^ -o $@
# ISO
GENISOIMAGE = genisoimage
ISO_FLAGS = -R -b boot/grub/stage2_eltorito -no-emul-boot -boot-load-size 4 -boot-info-table
STAGE2 = stage2_eltorito
ISO = tetrasm.iso
iso: $(ISO)
$(ISO): iso/boot/tetrasm.elf iso/boot/grub/stage2_eltorito iso/boot/grub/menu.lst
$(GENISOIMAGE) $(ISO_FLAGS) -o $@ iso
iso/boot/tetrasm.elf: $(KERNEL)
@mkdir -p iso/boot
cp $< $@
iso/boot/grub/stage2_eltorito: $(STAGE2)
@mkdir -p iso/boot/grub
cp $< $@
iso/boot/grub/menu.lst: menu.lst
@mkdir -p iso/boot/grub
cp $< $@
clean:
rm -rf $(ISO) iso $(KERNEL) $(OBJECTS)
# Emulation
QEMU = qemu-system-i386
QEMU_FLAGS =
ifneq (,$(findstring debug,$(BUILD)))
override QEMU_FLAGS += -s -S
endif
qemu: $(KERNEL)
$(QEMU) $(QEMU_FLAGS) -kernel $<
qemu-iso: $(ISO)
$(QEMU) $(QEMU_FLAGS) -cdrom $<
# Debugger
GDB = gdb
GDB_FLAGS = -ex 'set disassembly-flavor intel' -ex 'display/i $$pc' -ex 'target remote localhost:1234'
gdb: $(KERNEL)
$(GDB) $(GDB_FLAGS) $<
-include config.mk
.PHONY: kernel iso clean qemu qemu-iso gdb