adds *.o file sto cleanup

This commit is contained in:
Eyck Jentzsch 2025-04-13 18:15:06 +02:00
parent e1ea5a98d6
commit 569df1536a
2 changed files with 2 additions and 6 deletions

6
env/common-clang.mk vendored
View File

@ -63,10 +63,6 @@ $(CXX_OBJS): %.o: %.cpp $(HEADERS)
.PHONY: clean
clean:
rm -f $(TARGET) $(LINK_OBJS)
.PHONY: clean-all
clean-all:
rm -f $(CLEAN_OBJS) $(LIBWRAP)
rm -f $(CLEAN_OBJS) $(LIBWRAP) *.a *.hex *.map *.dis *.elf *.o
endif

2
env/common-gcc.mk vendored
View File

@ -79,6 +79,6 @@ $(CXX_OBJS): %.o: %.cpp $(HEADERS)
.PHONY: clean
clean:
rm -f $(CLEAN_OBJS) $(LIBWRAP) *.a *.hex *.map *.dis *.elf
rm -f $(CLEAN_OBJS) $(LIBWRAP) *.a *.hex *.map *.dis *.elf *.o
endif