Skip to content
Snippets Groups Projects
Commit 84a038f8 authored by Théo Le Calvar's avatar Théo Le Calvar
Browse files

add run, run_gui, debug, debug_gui rules to makefile

parent e39fb243
No related branches found
No related tags found
No related merge requests found
......@@ -65,9 +65,19 @@ $(KERNEL_OBJ): $(OBJECTS)
$(MV) $@ build/all-o
run:
run: $(KERNEL_OBJ)
$(QEMU) -display curses -net nic,model=ne2k_isa -net user,tftp=./build/boot -cdrom ./build/boot/grub.iso
run_gui: $(KERNEL_OBJ)
$(QEMU) -net nic,model=ne2k_isa -net user,tftp=./build/boot -cdrom ./build/boot/grub.iso
debug: $(KERNEL_OBJ)
$(QEMU) -display curses -S -s -net nic,model=ne2k_isa -net user,tftp=./build/boot -cdrom ./build/boot/grub.iso
debug_gui: $(KERNEL_OBJ)
$(QEMU) -S -s -net nic,model=ne2k_isa -net user,tftp=./build/boot -cdrom ./build/boot/grub.iso
# Clean directory
clean:
$(DELE) build/all-o/*.o
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment