Skip to content

Commit

Permalink
Fixes to third-party-clean target. (#943)
Browse files Browse the repository at this point in the history
  • Loading branch information
slaff authored Feb 11, 2017
1 parent 464bf49 commit 40b6d30
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions Sming/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -413,14 +413,14 @@ samples-clean:

third-party-clean:
$(Q) for dir in $(THIRD_PARTY_DIRS); do \
$(Q) rm -rf third-party/$$dir; \
rm -rf third-party/$$dir; \
done
$(Q) $(GIT) checkout third-party

dist-clean: clean samples-clean third-party-clean
$(Q) for file in $(shell ls $(USER_LIBDIR)/lib*.a ); do \
rm $$file; \
done
rm $$file; \
done
$(Q) $(GIT) checkout $(USER_LIBDIR)

$(foreach bdir,$(BUILD_DIR),$(eval $(call compile-objects,$(bdir))))
Expand Down

0 comments on commit 40b6d30

Please sign in to comment.