mirror of
https://github.com/lwthiker/curl-impersonate.git
synced 2025-08-08 04:42:26 +00:00

Use a 'configure' script generated by autoconf to configure whether a static build is desired, and where to install the final curl-impersonate binaries. Add installation targets to the Makefile.
12 lines
321 B
Plaintext
12 lines
321 B
Plaintext
AC_INIT([curl-impersonate], [0.3.2], [lwt@lwthiker.com])
|
|
|
|
AC_ARG_ENABLE([static],
|
|
[AS_HELP_STRING([--enable-static],
|
|
[Build curl-impersonate statically with libcurl-impersonate])],
|
|
[AC_SUBST([curl_configure_options], ["--enable-static --disable-shared"])],
|
|
[])
|
|
|
|
AC_CONFIG_FILES([Makefile])
|
|
|
|
AC_OUTPUT
|