diff options
author | Kevin E Martin <kem@kem.org> | 2005-05-06 01:46:29 +0000 |
---|---|---|
committer | Kevin E Martin <kem@kem.org> | 2005-05-06 01:46:29 +0000 |
commit | 6629d05366b6d375397be21fd35ae28dd7da5d3d (patch) | |
tree | a146c8aa7a6508737f2bc7b77cb429e7c8deafc4 | |
parent | 15f8c805114c55274de8c76e98af06b8cfbc5bf6 (diff) |
Initial build system files for proto module.
-rw-r--r-- | Makefile.am | 8 | ||||
-rwxr-xr-x | autogen.sh | 12 | ||||
-rw-r--r-- | bigreqsext.pc.in | 9 | ||||
-rw-r--r-- | configure.ac | 6 |
4 files changed, 35 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am new file mode 100644 index 0000000..8705e9a --- /dev/null +++ b/Makefile.am @@ -0,0 +1,8 @@ +bigreqsdir = $(includedir)/X11/extensions +bigreqs_HEADERS = \ + bigreqstr.h + +pkgconfigdir = $(libdir)/pkgconfig +pkgconfig_DATA = bigreqsext.pc + +EXTRA_DIST = autogen.sh bigreqsext.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/bigreqsext.pc.in b/bigreqsext.pc.in new file mode 100644 index 0000000..e7d01dd --- /dev/null +++ b/bigreqsext.pc.in @@ -0,0 +1,9 @@ +prefix=@prefix@ +exec_prefix=@exec_prefix@ +libdir=@libdir@ +includedir=@includedir@ + +Name: BigReqsExt +Description: BigReqs extension headers +Version: @PACKAGE_VERSION@ +Cflags: -I${includedir} diff --git a/configure.ac b/configure.ac new file mode 100644 index 0000000..01ee2ae --- /dev/null +++ b/configure.ac @@ -0,0 +1,6 @@ +AC_PREREQ([2.57]) +AC_INIT([BigReqsExt], [7.0], [xorg@lists.freedesktop.org]) +AM_INIT_AUTOMAKE([foreign dist-bzip2]) + +AC_OUTPUT([Makefile + bigreqsext.pc]) |