remove .a files from lib directories after install

This commit is contained in:
John Voltz 2008-03-07 16:54:45 +00:00
parent 7a15d38e01
commit 1ec48b2e52
1 changed files with 3 additions and 0 deletions

View File

@ -231,6 +231,9 @@ $(BUILD_DIR)/%/.stamp_target_installed:
rm -rf $(TARGET_DIR)/$$d $(TARGET_DIR)/usr/$$d; \
done)
find $(TARGET_DIR) -name '*.la' -delete
find $(TARGET_DIR)/lib -name '*.a' -delete
find $(TARGET_DIR)/usr/lib -name '*.a' -delete
touch $@
$(BUILD_DIR)/%/.stamp_cleaned: