summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin E Martin <kem@kem.org>2005-05-06 01:46:30 +0000
committerKevin E Martin <kem@kem.org>2005-05-06 01:46:30 +0000
commit79c89e7f8bd4a291cc58bc18727503ab853764db (patch)
tree41148584717adc0878e770be83d11b9a59887acf
parentf8419f84622bf0b65e1ed62c1828d041613a3e01 (diff)
downloadxorg-proto-fontsproto-79c89e7f8bd4a291cc58bc18727503ab853764db.tar.gz
Initial build system files for proto module.
-rw-r--r--Makefile.am13
-rwxr-xr-xautogen.sh12
-rw-r--r--configure.ac6
-rw-r--r--fontsext.pc.in9
4 files changed, 40 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am
new file mode 100644
index 0000000..3b367e0
--- /dev/null
+++ b/Makefile.am
@@ -0,0 +1,13 @@
+fontsdir = $(includedir)/X11/extensions
+fonts_HEADERS = \
+ font.h \
+ fontproto.h \
+ fontstruct.h \
+ FS.h \
+ fsmasks.h \
+ FSproto.h
+
+pkgconfigdir = $(libdir)/pkgconfig
+pkgconfig_DATA = fontsext.pc
+
+EXTRA_DIST = autogen.sh fontsext.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..9e1273d
--- /dev/null
+++ b/configure.ac
@@ -0,0 +1,6 @@
+AC_PREREQ([2.57])
+AC_INIT([FontsExt], [7.0], [xorg@lists.freedesktop.org])
+AM_INIT_AUTOMAKE([foreign dist-bzip2])
+
+AC_OUTPUT([Makefile
+ fontsext.pc])
diff --git a/fontsext.pc.in b/fontsext.pc.in
new file mode 100644
index 0000000..4335cd5
--- /dev/null
+++ b/fontsext.pc.in
@@ -0,0 +1,9 @@
+prefix=@prefix@
+exec_prefix=@exec_prefix@
+libdir=@libdir@
+includedir=@includedir@
+
+Name: FontsExt
+Description: Fonts extension headers
+Version: @PACKAGE_VERSION@
+Cflags: -I${includedir}