aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: 47ed44ab9427eb2b968dc3f91de5a853ded3fa3b (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
all:
	bam

clean:
	bam -c

rebuild: clean all

mrproper: clean

run_tests:
	bam
	src/tests/run_tests.sh

run_qemu: all
	qemu-system-i386 -cdrom cdrom.iso -serial stdio -m 12

run_qemu_debug: all
	qemu-system-i386 -cdrom cdrom.iso -serial stdio -m 12 -s -S &	\
	(sleep 0.1; gdb src/kernel/kernel.bin -x gdb_cmd)

run_bochs_debug: all
	bochs -f bochs_debug.cfg -q