summaryrefslogtreecommitdiff
path: root/autogen.sh
blob: 565697cfcc4fcbe81e1d8f2b68977a21d73ac17a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh
#
# $Id$
#
# Copyright (c) 2002-2005
#         The Xfce development team. All rights reserved.
#
# Written for Xfce by Benedikt Meurer <benny@xfce.org>.
#

if (type xdt-autogen) >/dev/null 2>&1; then
  exec xdt-autogen $@
else
  (aclocal &&
   automake --add-missing --copy --gnu &&
   autoconf &&
   ./configure --enable-maintainer-mode $@ &&
   echo "Now type \"make\" to build.") || exit 1
fi

# vi:set ts=2 sw=2 et ai: