mirror of
https://github.com/corda/corda.git
synced 2025-01-17 02:09:50 +00:00
rename clean to clean-current, and clean-all back to clean
This way, the clean target continues to do what it always did: delete the whole build directory. You can use clean-current to just delete the currently-configured build directory.
This commit is contained in:
parent
82d4ced160
commit
ef11cd1d8d
8
makefile
8
makefile
@ -1246,13 +1246,13 @@ javadoc:
|
||||
-header "Avian v$(version)" \
|
||||
-bottom "<a href=\"http://oss.readytalk.com/avian/\">http://oss.readytalk.com/avian</a>"
|
||||
|
||||
.PHONY: clean
|
||||
clean:
|
||||
.PHONY: clean-current
|
||||
clean-current:
|
||||
@echo "removing $(build)"
|
||||
rm -rf $(build)
|
||||
|
||||
.PHONY: clean-all
|
||||
clean-all:
|
||||
.PHONY: clean
|
||||
clean:
|
||||
@echo "removing build"
|
||||
rm -rf build
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user