mirror of https://github.com/ntop/n2n.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
877 B
40 lines
877 B
AC_INIT([Makefile.in], 1.0)
|
|
|
|
AC_ARG_WITH(edgex, [ --with-edgex Build for Ubiquity-X])
|
|
|
|
# NOTE: this file is not actually used. You need to edit configure as well!
|
|
N2N_VERSION=$(../../scripts/version.sh)
|
|
|
|
if test "${EXTN+set}" != set; then
|
|
MACHINE=`uname -m`
|
|
SHORT_MACHINE=`echo $MACHINE | cut -b1-3`
|
|
|
|
if test $MACHINE = "x86_64"; then
|
|
EXTN="amd64"
|
|
else
|
|
if test $SHORT_MACHINE = "aar"; then
|
|
EXTN="arm64"
|
|
else
|
|
if test $SHORT_MACHINE = "arm"; then
|
|
EXTN="armhf"
|
|
else
|
|
if test $SHORT_MACHINE = "mip"; then
|
|
EXTN="mips"
|
|
else
|
|
EXTN="i386"
|
|
fi
|
|
fi
|
|
fi
|
|
fi
|
|
fi
|
|
|
|
if test "${with_edgex+set}" = set; then
|
|
EXTN="mipsel"
|
|
fi
|
|
|
|
AC_SUBST(N2N_VERSION)
|
|
AC_SUBST(EXTN)
|
|
|
|
AC_CONFIG_FILES(debian/control)
|
|
AC_CONFIG_FILES(Makefile)
|
|
AC_OUTPUT
|
|
|