File: configure.ac

package info (click to toggle)
libdisasm 0.23-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 2,648 kB
  • sloc: sh: 9,096; ansic: 7,970; perl: 1,915; asm: 694; makefile: 133; ruby: 3
file content (42 lines) | stat: -rw-r--r-- 668 bytes parent folder | download | duplicates (5)
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
dnl Process this file with autoconf to produce a configure script.
AC_PREREQ(2.53)
AC_INIT(libdisasm, 0.23, bastard-libdisasm@lists.sourceforge.net, libdisasm)
AC_CONFIG_SRCDIR(libdisasm/x86_disasm.c)
AM_INIT_AUTOMAKE

AM_CONFIG_HEADER(config.h)
AM_MAINTAINER_MODE

AC_CANONICAL_HOST
AC_ISC_POSIX
AC_PROG_CC
AM_PROG_CC_STDC

AC_CACHE_SAVE

AC_HEADER_STDC

AM_PROG_LIBTOOL

AC_CACHE_SAVE

dnl Use -Wall if we have gcc.
if test "x$GCC" = "xyes"; then
  case " $CFLAGS " in
  *\ -Wall\ *) ;;
  *) CFLAGS="$CFLAGS -Wall -ggdb" ;;
  esac
fi

AC_CONFIG_FILES([
Makefile
libdisasm/Makefile
x86dis/Makefile
test/Makefile
doc/Makefile
man/Makefile
perl/Makefile
])

AC_OUTPUT