From 3ccd25efc0aefee39160853079f227c1bcfc34a5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Georges=20Dup=C3=A9ron?= Date: Sat, 30 Jun 2018 18:07:25 +0200 Subject: [PATCH] Fix typo in Makefile --- example-os/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/example-os/Makefile b/example-os/Makefile index 7a96c84..475da69 100644 --- a/example-os/Makefile +++ b/example-os/Makefile @@ -1,10 +1,10 @@ .PHONY: all -all: os.sh deploy-screenshots +all: os.sh ../deploy-screenshots: mkdir $@ -os.sh: os.asm Makefile +os.sh: os.asm ../deploy-screenshots Makefile nasm -o $@ $< chmod a+x $@