X-Git-Url: https://git.wirehaze.ovh/lifeboot.git/blobdiff_plain/11236880b74e3d0bee54cd6410586d0e2dca614f..1a5860dd84e2f3409daf770a67818a5997819711:/Makefile diff --git a/Makefile b/Makefile index 16f62dd..3117265 100644 --- a/Makefile +++ b/Makefile @@ -3,12 +3,12 @@ PROGRAMS := prototype lifeboot CC := gcc 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