Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Application.mk
Original file line number Diff line number Diff line change
Expand Up @@ -393,6 +393,7 @@ clean::
$(call CLEANAROBJS)
$(call CLEAN)
distclean:: clean
$(call DELFILE, .kconfig)
$(call DELFILE, Make.dep)
$(call DELFILE, .depend)

Expand Down
2 changes: 1 addition & 1 deletion audioutils/lame/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,6 @@ ifneq ($(PREFIX),)
endif

distclean::
$(Q)cd $(DST_PATH) && make distclean
$(Q)if [ -d $(DST_PATH) ]; then cd $(DST_PATH) && $(MAKE) distclean; fi

include $(APPDIR)/Application.mk
2 changes: 1 addition & 1 deletion crypto/wolfssl/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ distclean::
$(call DELDIR, $(WOLFSSL_UNPACKNAME))
$(call DELDIR, $(WOLFSSL_EXAMPLESNAME))
else
distclean:
distclean::
$(call DELDIR, $(WOLFSSL_UNPACKNAME))
endif

Expand Down
2 changes: 1 addition & 1 deletion netutils/libshvc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ ifeq ($(wildcard $(SHVDIR)/.git),)
$(eval $(call RUN_OMK_MAKE, context, default-config include-pass))

distclean::
make -C $(SHVDIR) distclean
if [ -d $(SHVDIR) ]; then make -C $(SHVDIR) distclean; fi
$(call DELDIR, $(SHVDIR))
$(call DELFILE, $(SHV_LIBS4C_TARGZ))
endif
Expand Down
2 changes: 1 addition & 1 deletion netutils/libulut/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ ifeq ($(wildcard $(ULUTDIR)/.git),)
$(eval $(call RUN_OMK_MAKE, context, default-config include-pass))

distclean::
make -C $(ULUTDIR) distclean
if [ -d $(ULUTDIR) ]; then make -C $(ULUTDIR) distclean; fi
$(call DELDIR, $(ULUTDIR))
$(call DELFILE, $(ULUT_TARGZ))
endif
Expand Down
Loading