1
0
Fork 0
mirror of https://github.com/ossrs/srs.git synced 2025-03-09 15:49:59 +00:00

Refine clean script

This commit is contained in:
winlin 2020-03-29 19:06:51 +08:00
parent 40cc8ed47c
commit 056fcd2928
2 changed files with 9 additions and 4 deletions

4
trunk/configure vendored
View file

@ -497,7 +497,9 @@ destroy: clean_st clean_openssl clean_ffmpeg clean_srtp2 clean_opus clean_nginx
clean_srs:
(cd ${SRS_OBJS_DIR} && rm -rf srs srs_utest)
(cd ${SRS_OBJS_DIR}/${SRS_PLATFORM} && rm -rf src include lib utest)
(cd ${SRS_OBJS_DIR}/${SRS_PLATFORM} && rm -rf include/* lib/*)
(cd ${SRS_OBJS_DIR}/${SRS_PLATFORM} && find src -name "*.o" -delete)
(cd ${SRS_OBJS_DIR}/${SRS_PLATFORM} && find utest -name "*.o" -delete)
clean_modules:
(cd ${SRS_OBJS_DIR} && rm -rf $__mdefaults)