Skip to content

Commit 34d19f1

Browse files
committed
bugfix and restructure directory
1 parent ab2e0a5 commit 34d19f1

53 files changed

Lines changed: 48 additions & 38 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Makefile.in

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -82,8 +82,8 @@ endif
8282
install: ## Install the Chrome version of curl-impersonate after build
8383
cd $(CURL_VERSION)
8484
$(MAKE) install-exec MAKEFLAGS=
85-
# Wrapper scripts for the Chrome version (e.g. 'curl_chrome99')
86-
install $(srcdir)/chrome/curl_* @bindir@
85+
# Wrapper scripts for the cli shortcut (e.g. 'curl_chrome99')
86+
install $(srcdir)/bin/curl_* @bindir@
8787
.PHONY: install
8888

8989
install-strip: ## Like 'install', but strip binaries for smaller size
@@ -92,14 +92,14 @@ install-strip: ## Like 'install', but strip binaries for smaller size
9292
# We could have used 'install-strip' but then the docs would be installed as well.
9393
# Instead strip manually.
9494
$(STRIP) @bindir@/curl-impersonate
95-
# Wrapper scripts for the Chrome version (e.g. 'curl_chrome99')
96-
install $(srcdir)/chrome/curl_chrome* $(srcdir)/chrome/curl_edge* $(srcdir)/chrome/curl_safari* @$(srcdir)/chrome/curl_firefox* bindir@
95+
# Wrapper scripts for the cli shortcut (e.g. 'curl_chrome99')
96+
install $(srcdir)/bin/curl_* bindir@
9797
.PHONY: install-strip
9898

9999
uninstall: ## Uninstall the Chrome version of curl-impersonate after 'make install'
100100
cd $(CURL_VERSION)
101101
$(MAKE) uninstall MAKEFLAGS=
102-
rm -Rf @bindir@/curl_chrome* @bindir@/curl_edge* @bindir@/curl_safari* @bindir@/curl_firefox*
102+
rm -Rf @bindir@/curl_*
103103
.PHONY: uninstall
104104

105105
clean:

README.md

Lines changed: 25 additions & 25 deletions

0 commit comments

Comments
 (0)