-
Notifications
You must be signed in to change notification settings - Fork 1
/
configure.ac
48 lines (38 loc) · 1.13 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
43
44
45
46
47
48
# -*- Autoconf -*-
# Process this file with autoconf to produce a configure script.
AC_PREREQ([2.71])
AC_INIT([ak-core], [0.3.0], [[email protected]])
AC_CONFIG_MACRO_DIRS([m4])
AC_CONFIG_AUX_DIR([build-aux])
AM_INIT_AUTOMAKE([foreign subdir-objects])
LT_PREREQ([2.4.6])
LT_INIT
AC_CONFIG_SRCDIR([src/sh-scripts/dt_entry.m4sh])
# Checks for programs.
AC_PROG_CC
AC_PROG_AWK
AC_PROG_CXX
AC_PROG_CPP
AC_PROG_INSTALL
AC_PROG_LN_S
AC_PROG_MAKE_SET
AC_PROG_MKDIR_P
AC_PROG_GREP
AC_PROG_SED
AC_PROG_AUTOM4TE
AS_VAR_SET_IF([SHELLCHECK], [],
[AS_VAR_SET([SHELLCHECK], ["`command -v shellcheck`"])])
AK_PROG_SHELLCHECK
AC_SUBST([lt_obj_subdir], ["$lt_cv_objdir"])
AC_CONFIG_FILES([Makefile
src/Makefile
src/m4sugar/Makefile
src/m4sugar/test/Makefile
src/sh-scripts/Makefile
src/sh-scripts/test/Makefile
src/sh-scripts/ccjs/Makefile
src/zsh-scripts/Makefile
src/awk-scripts/Makefile
src/jq/Makefile
doc/sh-scripts/Makefile])
AC_OUTPUT