1
0
mirror of https://github.com/antonblanchard/microwatt.git synced 2026-02-27 00:59:41 +00:00

Makefile: Improve clean a bit

Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
This commit is contained in:
Benjamin Herrenschmidt
2020-05-14 10:12:44 +10:00
parent edbbf9a125
commit 803ee9ef35
2 changed files with 6 additions and 1 deletions

View File

@@ -163,11 +163,13 @@ _clean:
clean: _clean
make -f scripts/mw_debug/Makefile clean
make -f hello_world/Makefile clean
distclean: _clean
rm -f *~ fpga/~
rm -f *~ fpga/*~ lib/*~ console/*~ include/*~
rm -rf litedram/build
rm -f litedram/extras/*~
rm -f litedram/gen-src/*~
rm -f litedram/gen-src/sdram_init/*~
make -f scripts/mw_debug/Makefile distclean
make -f hello_world/Makefile distclean

View File

@@ -29,3 +29,6 @@ hello_world.hex: hello_world.bin
clean:
@rm -f *.o hello_world.elf hello_world.bin hello_world.hex
distclean: clean
rm -f *~