1
0
mirror of https://github.com/mariadb-corporation/mariadb-columnstore-engine.git synced 2026-01-06 08:21:10 +03:00

Fix make clean

This commit is contained in:
David Hall
2016-08-05 14:08:55 -05:00
parent fc67e42728
commit 0d2b69c031

View File

@@ -130,5 +130,12 @@ docs:
clean:
rm -f net-snmp.built; \
find . -name \*.d.* -o -name \*.so -o -name \*.a -o -name \*.o -o -name \*.lib -o -name \*.sa -o -name \*.lo -o -name \*.la -exec rm {} \; -print
find . -name \*.d.* -exec rm -f {} \; -print
find . -name \*.so -exec rm -f {} \; -print
find . -name \*.a -exec rm -f {} \; -print
find . -name \*.o -exec rm -f {} \; -print
find . -name \*.lib -exec rm -f {} \; -print
find . -name \*.sa -exec rm -f {} \; -print
find . -name \*.lo -exec rm -f {} \; -print
find . -name \*.la -exec rm -f {} \; -print