mirror of
https://github.com/serge1/ELFIO.git
synced 2024-12-28 06:15:21 +00:00
23 lines
486 B
Plaintext
23 lines
486 B
Plaintext
|
dnl Process this file with autoconf to produce a configure script.
|
||
|
AC_INIT(ELFIO, 2.0.0)
|
||
|
|
||
|
AM_INIT_AUTOMAKE(ELFIO, 2.0.0)
|
||
|
|
||
|
dnl Checks for programs.
|
||
|
AC_PROG_CXX
|
||
|
AC_PROG_INSTALL
|
||
|
|
||
|
dnl Checks for libraries.
|
||
|
|
||
|
dnl Checks for header files.
|
||
|
|
||
|
dnl Checks for typedefs, structures, and compiler characteristics.
|
||
|
|
||
|
dnl Checks for library functions.
|
||
|
|
||
|
AC_OUTPUT([Makefile
|
||
|
examples/Makefile
|
||
|
examples/ELFDump/Makefile
|
||
|
examples/tutorial/Makefile
|
||
|
doc/Makefile])
|