-
Notifications
You must be signed in to change notification settings - Fork 0
/
configure.ac
35 lines (27 loc) · 848 Bytes
/
configure.ac
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.69])
AC_INIT([Reactive Components for Go],[0.1],[[email protected]])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE([-Wno-portability])
AM_MAINTAINER_MODE([disable])
AC_CONFIG_SRCDIR([src/main.cpp])
AC_CONFIG_HEADERS([config.h])
AC_REQUIRE_AUX_FILE([tap-driver.sh])
# Checks for programs.
LT_INIT([])
AC_PROG_CXX()
AM_PROG_LEX()
AC_PROG_YACC()
# Checks for libraries.
AC_SEARCH_LIBS([clock_gettime],[rt])
# Checks for header files.
# Checks for typedefs, structures, and compiler characteristics.
# Checks for library functions.
AC_LCOV()
AC_CONFIG_FILES([Makefile
src/Makefile
ftest/Makefile
utest/Makefile])
AC_OUTPUT