diff options
author | Kevin E Martin <kem@kem.org> | 2005-05-06 01:46:32 +0000 |
---|---|---|
committer | Kevin E Martin <kem@kem.org> | 2005-05-06 01:46:32 +0000 |
commit | 474a31667a8addb29a0f115790df2910400c4081 (patch) | |
tree | 9f752507a3d9b151bf5c256f2c69b80bc27e6f55 | |
parent | be09530f849ec00001fc0575816030b7a5dde05c (diff) |
Initial build system files for proto module.
-rw-r--r-- | Makefile.am | 43 | ||||
-rwxr-xr-x | autogen.sh | 12 | ||||
-rw-r--r-- | configure.ac | 6 | ||||
-rw-r--r-- | xextensions.pc.in | 9 |
4 files changed, 70 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..77d6ddc --- /dev/null +++ b/Makefile.am @@ -0,0 +1,43 @@ +xextdir = $(includedir)/X11/extensions +xext_HEADERS = \ + dpms.h \ + dpmsstr.h \ + extutil.h \ + lbxbuf.h \ + lbxbufstr.h \ + lbxdeltastr.h \ + lbximage.h \ + lbxopts.h \ + lbxstr.h \ + lbxzlib.h \ + MITMisc.h \ + mitmiscstr.h \ + multibuf.h \ + multibufst.h \ + security.h \ + securstr.h \ + shape.h \ + shapestr.h \ + shmstr.h \ + sync.h \ + syncstr.h \ + Xag.h \ + Xagsrv.h \ + Xagstr.h \ + Xcup.h \ + Xcupstr.h \ + Xdbe.h \ + Xdbeproto.h \ + XEVI.h \ + XEVIstr.h \ + Xext.h \ + XLbx.h \ + XShm.h \ + xtestext1.h \ + XTest.h \ + xteststr.h + +pkgconfigdir = $(libdir)/pkgconfig +pkgconfig_DATA = xextensions.pc + +EXTRA_DIST = autogen.sh xextensions.pc.in diff --git a/autogen.sh b/autogen.sh new file mode 100755 index 0000000..904cd67 --- /dev/null +++ b/autogen.sh @@ -0,0 +1,12 @@ +#! /bin/sh + +srcdir=`dirname $0` +test -z "$srcdir" && srcdir=. + +ORIGDIR=`pwd` +cd $srcdir + +autoreconf -v --install || exit 1 +cd $ORIGDIR || exit $? + +$srcdir/configure --enable-maintainer-mode "$@" diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..fe24dec --- /dev/null +++ b/configure.ac @@ -0,0 +1,6 @@ +AC_PREREQ([2.57]) +AC_INIT([XExtensions], [7.0], [xorg@lists.freedesktop.org]) +AM_INIT_AUTOMAKE([foreign dist-bzip2]) + +AC_OUTPUT([Makefile + xextensions.pc]) diff --git a/xextensions.pc.in b/xextensions.pc.in new file mode 100644 index 0000000..07d9ae2 --- /dev/null +++ b/xextensions.pc.in @@ -0,0 +1,9 @@ +prefix=@prefix@ +exec_prefix=@exec_prefix@ +libdir=@libdir@ +includedir=@includedir@ + +Name: XExtensions +Description: XExt extension headers +Version: @PACKAGE_VERSION@ +Cflags: -I${includedir} |