mirror of
https://github.com/gbdev/rgbds.git
synced 2025-11-20 10:12:06 +00:00
Have make clean delete all generated .o files
Especially important if the file structure changes, to avoid leaving stale object files in non-fresh repos.
This commit is contained in:
9
Makefile
9
Makefile
@@ -129,12 +129,13 @@ rgbgfx: ${rgblink_obj}
|
|||||||
# for the html documentation.
|
# for the html documentation.
|
||||||
|
|
||||||
clean:
|
clean:
|
||||||
$Q${RM} rgbasm rgbasm.exe ${rgbasm_obj}
|
$Q${RM} rgbasm rgbasm.exe src/asm/*.o
|
||||||
$Q${RM} rgblink rgblink.exe ${rgblink_obj}
|
$Q${RM} rgblink rgblink.exe src/link/*.o
|
||||||
$Q${RM} rgbfix rgbfix.exe ${rgbfix_obj}
|
$Q${RM} rgbfix rgbfix.exe src/fix/*.o
|
||||||
$Q${RM} rgbgfx rgbgfx.exe ${rgbgfx_obj}
|
$Q${RM} rgbgfx rgbgfx.exe src/gfx/*.o
|
||||||
$Q${RM} src/asm/asmy.c src/asm/asmy.h
|
$Q${RM} src/asm/asmy.c src/asm/asmy.h
|
||||||
$Q${RM} src/link/lexer.c src/link/parser.c src/link/parser.h
|
$Q${RM} src/link/lexer.c src/link/parser.c src/link/parser.h
|
||||||
|
$Q${RM} src/extern/*.o
|
||||||
|
|
||||||
# Target used to remove all html files generated by the wwwman target
|
# Target used to remove all html files generated by the wwwman target
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user