]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
fixed Mac OS-X specific directory in $(RM) list 529/head
authorYann Collet <cyan@fb.com>
Sun, 5 Feb 2017 18:22:58 +0000 (10:22 -0800)
committerYann Collet <cyan@fb.com>
Sun, 5 Feb 2017 18:22:58 +0000 (10:22 -0800)
these directories are now removed with -r command

lib/Makefile

index bef69543fce7336746562bdc045f638d9b4fb8ff..05dd2bc9a51fe421ac0eb48585f2454873b5da01 100644 (file)
@@ -89,7 +89,9 @@ lib-release: DEBUGFLAGS :=
 lib-release: lib
 
 clean:
-       @$(RM) core *.o *.a *.gcda *.$(SHARED_EXT) *.$(SHARED_EXT).* libzstd.pc dll/libzstd.dll dll/libzstd.lib
+       @$(RM) -r *.dSYM   # Mac OS-X specific
+       @$(RM) core *.o *.a *.gcda *.$(SHARED_EXT) *.$(SHARED_EXT).* libzstd.pc
+       @$(RM) dll/libzstd.dll dll/libzstd.lib
        @$(RM) common/*.o compress/*.o decompress/*.o dictBuilder/*.o legacy/*.o deprecated/*.o
        @echo Cleaning library completed