Skip to content

Commit c005720

Browse files
committed
Started autotools config
1 parent a8a1224 commit c005720

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

Makefile.am

Whitespace-only changes.

configure.ac

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
AC_INIT([libbyteconvert], [0.1.0], [[email protected]])
2+
3+
AM_INIT_AUTOMAKE
4+
5+
# Checks for programs.
6+
AC_PROG_CXX
7+
8+
# Checks for libraries.
9+
10+
# Checks for header files.
11+
AC_CHECK_HEADER([stdint.h],[],[AC_MSG_ERROR([sorry, can't do anything for you])])
12+
13+
# Checks for typedefs, structures, and compiler characteristics.
14+
AC_TYPE_SIZE_T
15+
AC_TYPE_UINT8_T
16+
17+
# Checks for library functions.
18+
19+
20+
# Config files
21+
AC_CONFIG_FILES([Makefile])
22+
23+
AC_OUTPUT

0 commit comments

Comments
 (0)