From 12e1e675e18596b690863e440f58278f1c744538 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Georges=20Dup=C3=A9ron?= Date: Tue, 3 Jul 2018 18:49:57 +0200 Subject: [PATCH] Small bugfix in the makefile (mkdir -p), execute test when make all is invoked --- example-os/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/example-os/Makefile b/example-os/Makefile index fcc6cd7..a86d869 100644 --- a/example-os/Makefile +++ b/example-os/Makefile @@ -2,10 +2,10 @@ os_filename = os.bat tests = test/qemu-system-i386 test/qemu-system-arm test/virtualbox test/bochs .PHONY: all -all: $(os_filename) os.ndisasm.disasm os.reasm.asm os.reasm .gitignore Makefile +all: $(os_filename) os.ndisasm.disasm os.reasm.asm os.reasm .gitignore test Makefile ../deploy-screenshots: Makefile - mkdir $@ + mkdir -p $@ $(os_filename): os.asm ../deploy-screenshots Makefile nasm -o $@ $<