mirror of
https://github.com/rofl0r/proxychains-ng.git
synced 2024-12-22 04:08:47 +00:00
33 lines
867 B
Plaintext
33 lines
867 B
Plaintext
dnl without this order in this file, autoconf will not work!
|
|
dnl the argument is a source file out of your sources. But
|
|
dnl acinclude.m4 makes the job for all programs ;-)
|
|
AC_INIT(proxychains,3.1)
|
|
|
|
dnl enable the following if you want to use autoconf/automake
|
|
dnl framework from a certain directory (like kde-common)
|
|
dnl AC_CONFIG_AUX_DIR(admin)
|
|
|
|
AC_CANONICAL_SYSTEM
|
|
|
|
AM_INIT_AUTOMAKE
|
|
|
|
AC_PREFIX_DEFAULT(/)
|
|
|
|
dnl without this order in this file, automake will be confused!
|
|
dnl
|
|
AM_CONFIG_HEADER(config.h)
|
|
|
|
AC_PROG_CC
|
|
AC_PROG_LIBTOOL
|
|
|
|
dnl create only shared libtool-libraries
|
|
AC_ENABLE_SHARED(yes)
|
|
|
|
dnl set the following to yes, if you want to create static
|
|
dnl libtool-libraries
|
|
AC_ENABLE_STATIC(no)
|
|
|
|
|
|
dnl add here all your Makefiles. These will be created by configure
|
|
AC_OUTPUT(Makefile proxychains/Makefile proxychains/docs/Makefile proxychains/docs/en/Makefile )
|