summaryrefslogtreecommitdiff
path: root/configure.ac
blob: 16c463de089b1dff8aa198f665b4e46ddb0de3a9 (plain)
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
AC_PREREQ(2.53)
AC_INIT(gsmd, 0.1.0, http://www.openmoko.org/)
AM_INIT_AUTOMAKE()
AC_CONFIG_SRCDIR(src/gsmd/gsmd.c)
AM_CONFIG_HEADER(config.h)
AM_MAINTAINER_MODE

AC_ISC_POSIX
AC_PROG_CC
AC_STDC_HEADERS
AC_PROG_LIBTOOL

AM_PROG_CC_C_O

m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])])

# base deps

# output stuff
AC_OUTPUT([
Makefile
libgsmd.pc
src/Makefile
src/gsmd/Makefile
src/libgsmd/Makefile
src/util/Makefile
include/Makefile
include/gsmd/Makefile
include/libgsmd/Makefile
include/common/Makefile
])

personal git repositories of Harald Welte. Your mileage may vary