diff options
author | John Klug <john.klug@multitech.com> | 2018-04-09 18:21:43 -0500 |
---|---|---|
committer | John Klug <john.klug@multitech.com> | 2018-04-19 08:19:30 -0500 |
commit | 0695ade471836874421a2fb7e5f3dfb97eb8c7f1 (patch) | |
tree | dd52be7616848770c8fc345f7784d74623b9fa88 | |
parent | 7e6c98684aa377deb8d1ae7a6f8ab83c487f8909 (diff) | |
download | mts-io-0695ade471836874421a2fb7e5f3dfb97eb8c7f1.tar.gz mts-io-0695ade471836874421a2fb7e5f3dfb97eb8c7f1.tar.bz2 mts-io-0695ade471836874421a2fb7e5f3dfb97eb8c7f1.zip |
Add autotools configure script.
-rw-r--r-- | util/configure.in | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/util/configure.in b/util/configure.in new file mode 100644 index 0000000..32a4e7f --- /dev/null +++ b/util/configure.in @@ -0,0 +1,20 @@ +AC_INIT([mts_util_lora2_reset.c]) +AM_INIT_AUTOMAKE([mts-util-lora2-reset], [0.3.0]) +AM_CONFIG_HEADER([config.h]) + +AC_PROG_CC +AC_PROG_CXX +AC_PROG_INSTALL +AC_PROG_MAKE_SET + +AC_HEADER_STDC + +AC_CHECK_HEADERS([ \ + errno.h fcntl.h getopt.h stdint.h stdio.h stdlib.h string.h unistd.h sys/ioctl.h sys/types.h sys/ioctl.h linux/i2c.h linux/i2c-dev.h +], [],AC_MSG_ERROR([ +required header missing])) + +AC_DEFINE([DEBUG], 0, [set to 1 to enable debug]) + +AC_OUTPUT([Makefile]) + |