Skip to content

Commit

Permalink
Fix make clean
Browse files Browse the repository at this point in the history
Signed-off-by: Paul Smedley <paul@smedley.id.au>
  • Loading branch information
psmedley committed Apr 29, 2022
1 parent fb928cc commit 8b3163a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions build/Makefile.global
Expand Up @@ -114,9 +114,10 @@ test: all

clean:
find . -name \*.gcno -o -name \*.gcda | xargs rm -f
find . -name \*.lo -o -name \*.o | xargs rm -f
find . -name \*.lo -o -name \*.obj | xargs rm -f
find . -name \*.la -o -name \*.a | xargs rm -f
find . -name \*.so | xargs rm -f
find . -name \*.la -o -name \*.lib | xargs rm -f
find . -name \*.dll | xargs rm -f
find . -name .libs -a -type d|xargs rm -rf
rm -f libphp$(PHP_MAJOR_VERSION).la $(SAPI_CLI_PATH) $(SAPI_CGI_PATH) $(SAPI_LITESPEED_PATH) $(SAPI_FPM_PATH) $(OVERALL_TARGET) modules/* libs/*

Expand Down

0 comments on commit 8b3163a

Please sign in to comment.