ALLIANCE_VERSION and LDFLAGS become libs

therefore AM_ALLIANCE can be used in any place of the configure.in
This commit is contained in:
Christophe Alexandre 2002-03-22 09:37:25 +00:00
parent dc1592d583
commit cccfaec8db
1 changed files with 4 additions and 2 deletions

View File

@ -2,12 +2,14 @@ AC_DEFUN(AM_ALLIANCE,
[AC_REQUIRE([AM_INIT_AUTOMAKE])
echo 'ALLIANCE configuration ....'
INCLUDES=-I${ALLIANCE_TOP}/include
LDFLAGS=-L${ALLIANCE_TOP}/lib
LIBS=-L${ALLIANCE_TOP}/lib
AC_SUBST(INCLUDES)
AC_SUBST(LDFLAGS)
AC_SUBST(LIBS)
INSTALL_DATA='${INSTALL} -m 664'
AC_SUBST(INSTALL_DATA)
INSTALL_PROGRAM='${INSTALL} -m 775'
AC_SUBST(INSTALL_PROGRAM)]
AC_DEFINE_UNQUOTED(ALLIANCE_VERSION, "5.0")
)