forked from johnkerl/miller
-
Notifications
You must be signed in to change notification settings - Fork 1
/
configure.ac
42 lines (38 loc) · 1.05 KB
/
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
36
37
38
39
40
41
42
AC_PREREQ([2.60])
# Manually increment on updates to https://github.com/johnkerl/miller/releases
AC_INIT([mlr],[2.2.1])
AC_CONFIG_SRCDIR([c/mlrmain.c])
AC_CONFIG_HEADERS([config.h])
AC_CONFIG_AUX_DIR([autotools])
AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE
AC_CANONICAL_HOST
AC_PROG_CC
m4_ifdef([AM_PROG_AR], [AM_PROG_AR])
AM_PROG_LEX
AC_EXEEXT
LT_INIT
# TODO: better source handling for lemon sources?
# perhaps lemon can be improved to survive being called from the build dir
AC_CONFIG_LINKS([c/dsls/filter_dsl_parse.y:c/dsls/filter_dsl_parse.y])
AC_CONFIG_LINKS([c/dsls/lempar.c:c/dsls/lempar.c])
AC_CONFIG_LINKS([c/dsls/put_dsl_parse.y:c/dsls/put_dsl_parse.y])
AC_CONFIG_FILES([Makefile
c/cli/Makefile
c/containers/Makefile
c/dsls/Makefile
c/experimental/Makefile
c/input/Makefile
c/lib/Makefile
c/mapping/Makefile
c/output/Makefile
c/stream/Makefile
c/unit_test/Makefile
c/reg_test/Makefile
c/reg_test/expected/Makefile
c/reg_test/input/Makefile
c/reg_test/input/rfc-csv/Makefile
c/tools/Makefile
c/Makefile
doc/Makefile])
AC_OUTPUT