diff options
author | daurnimator <quae@daurnimator.com> | 2018-08-05 12:24:10 +1000 |
---|---|---|
committer | Hisham Muhammad <hisham@gobolinux.org> | 2018-08-10 16:52:18 -0300 |
commit | bcee11414737b0f764537768b036e52d40ac2eaa (patch) | |
tree | fa1c5d8fce7631b3ff4ed9f79414d1990099ec9b | |
parent | f8d4ac493de6165e04ab12c3adba098ee1347842 (diff) | |
download | luarocks-bcee11414737b0f764537768b036e52d40ac2eaa.tar.gz luarocks-bcee11414737b0f764537768b036e52d40ac2eaa.tar.bz2 luarocks-bcee11414737b0f764537768b036e52d40ac2eaa.zip |
Makefile: Clean with a single 'rm' invocation
-rw-r--r-- | Makefile | 14 |
1 files changed, 7 insertions, 7 deletions
@@ -119,12 +119,12 @@ windows-clean: | |||
119 | # ---------------------------------------- | 119 | # ---------------------------------------- |
120 | 120 | ||
121 | clean: | 121 | clean: |
122 | rm -f ./config.unix | 122 | rm -rf ./config.unix \ |
123 | rm -f ./luarocks | 123 | ./luarocks \ |
124 | rm -f ./luarocks-admin | 124 | ./luarocks-admin \ |
125 | rm -rf ./build/ | 125 | ./build/ \ |
126 | rm -rf build-binary | 126 | build-binary \ |
127 | rm -rf ./.luarocks | 127 | ./.luarocks \ |
128 | rm -rf ./lua_modules | 128 | ./lua_modules |
129 | 129 | ||
130 | .PHONY: all build install binary install-binary bootstrap clean windows-binary windows-clean | 130 | .PHONY: all build install binary install-binary bootstrap clean windows-binary windows-clean |