summaryrefslogtreecommitdiff
path: root/configure.ac
blob: 7de446b9b59cf0551a3a0c072ee2ed8db57f8318 (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
AC_PREREQ(2.53)
AC_INIT(gsmd, 0.0.1, 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

# 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