1
0
mirror of https://github.com/libuv/libuv synced 2025-03-28 21:13:16 +00:00

build: add distclean target to out-of-tree builds

This commit is contained in:
Ben Noordhuis 2013-02-27 22:08:58 +01:00
parent dd20025207
commit cdf69dbed6

View File

@ -46,8 +46,8 @@ Makefile:: ;
# Turn everything else into a no-op rule that depends on the build directory.
%:: $(builddir_name) ;
.PHONY: clean
clean:
.PHONY: clean distclean
clean distclean:
$(RM) -fr $(builddir_name)
endif