diff options
author | Kevin E Martin <kem@kem.org> | 2005-05-06 01:46:31 +0000 |
---|---|---|
committer | Kevin E Martin <kem@kem.org> | 2005-05-06 01:46:31 +0000 |
commit | 803c8ecaba2f8c703bbb46c0d740bfa349ce0245 (patch) | |
tree | d298684f8df9bf85be03b4959b68a47e6f2277ed | |
parent | a870c60741273ebd6cb1e69b4e535ce3a6bc76bf (diff) |
Initial build system files for proto module.
-rw-r--r-- | Makefile.am | 33 | ||||
-rwxr-xr-x | autogen.sh | 12 | ||||
-rw-r--r-- | configure.ac | 6 | ||||
-rw-r--r-- | xproto.pc.in | 9 |
4 files changed, 60 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..f886f63 --- /dev/null +++ b/Makefile.am @@ -0,0 +1,33 @@ +xprotodir = $(includedir)/X11 +xproto_HEADERS = \ + ap_keysym.h \ + DECkeysym.h \ + HPkeysym.h \ + keysymdef.h \ + keysym.h \ + Sunkeysym.h \ + Xalloca.h \ + Xarch.h \ + Xatom.h \ + Xdefs.h \ + XF86keysym.h \ + Xfuncproto.h \ + Xfuncs.h \ + X.h \ + Xmd.h \ + Xosdefs.h \ + Xos.h \ + Xos_r.h \ + Xpoll.h \ + Xproto.h \ + Xprotostr.h \ + Xthreads.h \ + Xw32defs.h \ + XWDFile.h \ + Xwindows.h \ + Xwinsock.h + +pkgconfigdir = $(libdir)/pkgconfig +pkgconfig_DATA = xproto.pc + +EXTRA_DIST = autogen.sh xproto.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..505406b --- /dev/null +++ b/configure.ac @@ -0,0 +1,6 @@ +AC_PREREQ([2.57]) +AC_INIT([Xproto], [7.0], [xorg@lists.freedesktop.org]) +AM_INIT_AUTOMAKE([foreign dist-bzip2]) + +AC_OUTPUT([Makefile + xproto.pc]) diff --git a/xproto.pc.in b/xproto.pc.in new file mode 100644 index 0000000..735a219 --- /dev/null +++ b/xproto.pc.in @@ -0,0 +1,9 @@ +prefix=@prefix@ +exec_prefix=@exec_prefix@ +libdir=@libdir@ +includedir=@includedir@ + +Name: Xproto +Description: Xproto headers +Version: @PACKAGE_VERSION@ +Cflags: -I${includedir} |