Files
curl-impersonate/configure.ac
lwthiker 35623ee453 Use autoconf to configure the Makefile
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.
2022-04-12 10:58:53 +03:00

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