[TizenRT] Remove object file when cleaning
authorgichan <gichan2.jang@samsung.com>
Tue, 14 Mar 2023 08:39:30 +0000 (17:39 +0900)
committerjaeyun-jung <39614140+jaeyun-jung@users.noreply.github.com>
Tue, 14 Mar 2023 10:32:51 +0000 (19:32 +0900)
Remove object files that are the result of TizenRT build when cleaning.

Signed-off-by: gichan <gichan2.jang@samsung.com>
tools/build_TizenRT/Makefile

index b2e1fde70a96285039e8b492083ff85594c8558b..0df85fee5b4cfbd8159046f937071495588bb06d 100644 (file)
@@ -119,6 +119,7 @@ depend: .depend
 clean:
        $(call DELFILE, .built)
        $(call CLEAN)
+       $(Q) find . -name "*.o" -exec rm -rf {} \;
 
 distclean: clean
        $(call DELFILE, Make.dep)