Use 'rm -f' in Makefile.in

Use 'rm -f' to ignore non-existant file errors.
This commit is contained in:
lwthiker
2022-05-14 17:58:22 +03:00
parent 53a87e0d9d
commit b0e9d4c91e

View File

@@ -76,7 +76,7 @@ firefox-uninstall: ## Uninstall the Firefox version of curl-impersonate after 'm
firefox-clean: ## Clean build artifacts of the Firefox version. Use after re-running './configure'
cd $(CURL_VERSION)
$(MAKE) clean MAKEFLAGS=
rm .firefox
rm -f .firefox
.PHONY: firefox-clean
chrome-build: $(CURL_VERSION)/.chrome ## Build the Chrome version of curl-impersonate
@@ -111,7 +111,7 @@ chrome-uninstall: ## Uninstall the Chrome version of curl-impersonate after 'mak
chrome-clean: ## Clean build artifacts of the Chrome version. Use after re-running './configure'
cd $(CURL_VERSION)
$(MAKE) clean MAKEFLAGS=
rm .chrome
rm -f .chrome
.PHONY: chrome-clean
clean: ## Remove all build artifacts, including dependencies