~ya-bo-ng/ubuntu-online-tour/13.10

« back to all changes in this revision

Viewing changes to 13.04/12.04/configure.ac

  • Committer: Anthony Dillon
  • Date: 2013-10-02 09:35:39 UTC
  • Revision ID: anthony.dillon@canonical.com-20131002093539-ewxr0tx9oi85ppoi
Inishal setup of the 13.10 version of the tour

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
AC_INIT([ubuntu-online-tour], [0.1])
 
2
AM_INIT_AUTOMAKE
 
3
AC_CONFIG_SRCDIR([js/jquery.min.js])
 
4
AM_MAINTAINER_MODE
 
5
 
 
6
GETTEXT_PACKAGE=ubuntu-online-tour
 
7
AC_SUBST(GETTEXT_PACKAGE)
 
8
AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE", [Gettext package.])
 
9
AC_PROG_INTLTOOL([0.23])
 
10
 
 
11
dnl Add the languages which your application supports here.
 
12
ALL_LINGUAS=`(cd "$srcdir/po" && ls *.po) | sed 's/\.po$//' | tr '\n' ' '`
 
13
 
 
14
AM_GLIB_GNU_GETTEXT
 
15
 
 
16
AC_OUTPUT([
 
17
Makefile
 
18
data/Makefile
 
19
po/Makefile.in
 
20
])
 
21