-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathconfigure.ac
36 lines (25 loc) · 857 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
36
AC_PREREQ([2.67])
AC_INIT([enttools], [1.0], [mikemol@gmail.com])
AM_INIT_AUTOMAKE([1.11 silent-rules foreign subdir-objects])
AC_CONFIG_SRCDIR([src/entwatch.c])
AC_CONFIG_HEADERS([config.h])
AC_PROG_CC
AC_CONFIG_FILES([Makefile])
AC_OUTPUT
AC_MSG_NOTICE([
"-------------------------------------------------
${PACKAGE_NAME} Version ${PACKAGE_VERSION}
Prefix: '${prefix}'.
Compiler: '${CC} ${CFLAGS} ${CPPFLAGS}'
Package features:
Async Execution: ${async_exec}
Now type 'make @<:@<target>@:>@'
where the optional <target> is:
all - build all binaries
install - install everything
check - run unit tests
dist - build distribution tarball
entwatch - build entwatch
entbuff - build entbuff
--------------------------------------------------"
])