X-Git-Url: https://git.wirehaze.ovh/lifeboot.git/blobdiff_plain/b18225d8568d8f36da6109113621a001a627da1f..650df115b56d7b5d516ec003c6b9abfd22c2e3da:/Makefile?ds=inline diff --git a/Makefile b/Makefile index 6ae7534..3117265 100644 --- a/Makefile +++ b/Makefile @@ -1,14 +1,14 @@ SRC_DIR := . PROGRAMS := prototype lifeboot CC := gcc -CFLAGS := -Wall -Wextra -Werror -I. +CFLAGS := -Wall -Wextra -I. -build: $(PROGRAMS) - -lifeboot: +lifeboot: lifeboot.asm nasm lifeboot.asm -run: +all: $(PROGRAMS) + +run: lifeboot qemu-system-x86_64 -drive file=lifeboot,format=raw format: @@ -17,4 +17,4 @@ format: clean: rm -rf $(PROGRAMS) *.o -.PHONY: build run format clean +.PHONY: all run format clean