From d1ff057889d2ed0086cd312411015aa0cdc45044 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonio=20Ni=C3=B1o=20D=C3=ADaz?= Date: Tue, 23 Jan 2018 22:54:37 +0000 Subject: [PATCH] Make clean target of Makefile clean html files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The html files generated with `make wwwman` weren't cleaned correctly with `clean`. Signed-off-by: Antonio Niño Díaz --- Makefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/Makefile b/Makefile index f228ed08..d621e067 100644 --- a/Makefile +++ b/Makefile @@ -117,11 +117,11 @@ rgbgfx: ${rgbgfx_obj} # Target used to remove all files generated by other Makefile targets. clean: - $Q${RM} rgbds.7.html gbz80.7.html rgbds.5.html - $Q${RM} rgbasm rgbasm.exe ${rgbasm_obj} rgbasm.1.html rgbasm.5.html - $Q${RM} rgblink rgblink.exe ${rgblink_obj} rgblink.1.html rgblink.5.html - $Q${RM} rgbfix rgbfix.exe ${rgbfix_obj} rgbfix.1.html - $Q${RM} rgbgfx rgbgfx.exe ${rgbgfx_obj} rgbgfx.1.html + $Q${RM} docs/rgbds.7.html docs/gbz80.7.html docs/rgbds.5.html + $Q${RM} rgbasm rgbasm.exe ${rgbasm_obj} docs/rgbasm.1.html docs/rgbasm.5.html + $Q${RM} rgblink rgblink.exe ${rgblink_obj} docs/rgblink.1.html docs/rgblink.5.html + $Q${RM} rgbfix rgbfix.exe ${rgbfix_obj} docs/rgbfix.1.html + $Q${RM} rgbgfx rgbgfx.exe ${rgbgfx_obj} docs/rgbgfx.1.html $Q${RM} src/asm/asmy.c src/asm/asmy.h $Q${RM} src/link/lexer.c src/link/parser.c src/link/parser.h