mirror of
https://github.com/NixOS/patchelf.git
synced 2025-10-20 13:03:57 +08:00

- add options in AM_INIT_AUTOMAKE to be more strict and to enable more advanced features (color-tests and parallel-tests) - rewrite tests/Makefile.am to use automake rules for building program and libraries => we can now do: ./bootstrap.sh && mkdir build && cd build && ../configure && make -j distcheck
11 lines
327 B
Plaintext
11 lines
327 B
Plaintext
AC_INIT([patchelf], m4_esyscmd([echo -n $(cat ./version)$VERSION_SUFFIX]))
|
|
AC_CONFIG_SRCDIR([src/patchelf.cc])
|
|
AC_CONFIG_AUX_DIR([build-aux])
|
|
AM_INIT_AUTOMAKE([-Wall -Werror dist-bzip2 foreign color-tests parallel-tests])
|
|
|
|
AC_PROG_CC
|
|
AC_PROG_CXX
|
|
|
|
AC_CONFIG_FILES([Makefile src/Makefile tests/Makefile patchelf.spec])
|
|
AC_OUTPUT
|