From 7097b9885e4ff0c36878d5928c9554c673e82305 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonio=20Ni=C3=B1o=20D=C3=ADaz?= Date: Sun, 9 Apr 2017 22:06:49 +0100 Subject: [PATCH] Fix clean target of the Makefile MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Two html documentation files weren't cleaned as expected. Signed-off-by: Antonio Niño Díaz --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 6bdb2a2b..046f12ec 100644 --- a/Makefile +++ b/Makefile @@ -63,9 +63,9 @@ rgbgfx_obj = \ all: rgbasm rgblink rgbfix rgbgfx clean: - $Q${RM} rgbds.html + $Q${RM} rgbds.html gbz80.html $Q${RM} rgbasm rgbasm.exe ${rgbasm_obj} rgbasm.html - $Q${RM} rgblink rgblink.exe ${rgblink_obj} rgblink.html + $Q${RM} rgblink rgblink.exe ${rgblink_obj} rgblink.html rgblink-script.html $Q${RM} rgbfix rgbfix.exe ${rgbfix_obj} rgbfix.html $Q${RM} rgbgfx rgbgfx.exe ${rgbgfx_obj} rgbgfx.html $Q${RM} src/asm/asmy.c src/asm/asmy.h