Dolda2000 GitWeb
/
autoconf-skel.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blame
|
history
|
raw
|
HEAD
Ignore new `commit' script.
[autoconf-skel.git]
/
configure.in
1
AC_INIT([pkgname], [0.1])
2
AC_CONFIG_SRCDIR(src/main.c)
3
AM_INIT_AUTOMAKE
4
AM_CONFIG_HEADER(config.h)
5
6
AC_PROG_CC
7
AC_PROG_INSTALL
8
9
dnl Add for gettext:
10
dnl AM_GNU_GETTEXT_VERSION(0.12.1)
11
dnl AM_GNU_GETTEXT([external])
12
13
dnl Add for libtool:
14
dnl AM_PROG_LIBTOOL
15
16
AC_HEADER_STDC
17
18
AC_OUTPUT([
19
Makefile
20
src/Makefile
21
dnl Add for gettext:
22
dnl po/Makefile.in
23
])