summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEamon Walsh <ewalsh@tycho.nsa.gov>2008-06-05 20:43:51 -0400
committerEamon Walsh <ewalsh@moss-charon.epoch.ncsc.mil>2008-06-05 20:43:51 -0400
commitf78cb0b4b27b8bcb057db7ed36ffdaf18f654bcd (patch)
treecb9792eb419f45d523095633a8401b842d09a0f7
parent73393f7ccabd41141f4020566442d6b6b22f8a19 (diff)
Some autotools fixes.
-rw-r--r--Makefile.am4
-rw-r--r--configure.ac1
-rw-r--r--src/Makefile.am7
3 files changed, 11 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index 1bfdcf4..501c442 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1 +1,5 @@
SUBDIRS=src
+
+pkgconfigdir = $(libdir)/pkgconfig
+
+pkgconfig_DATA = xpyb.pc
diff --git a/configure.ac b/configure.ac
index 3f75353..56ea7b7 100644
--- a/configure.ac
+++ b/configure.ac
@@ -100,6 +100,7 @@ AM_CONDITIONAL(BUILD_XVMC, [test "x$BUILD_XVMC" = xyes])
AC_CONFIG_FILES([Makefile src/Makefile])
+AC_CONFIG_FILES([xpyb.pc])
AC_OUTPUT
diff --git a/src/Makefile.am b/src/Makefile.am
index 532bafc..305d47d 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -15,7 +15,12 @@ xcb_la_CFLAGS = -g $(CWARNFLAGS)
xcb_la_LDFLAGS = -module
xcb_la_SOURCES = conn.c constant.c cookie.c error.c event.c except.c \
ext.c extkey.c iter.c list.c module.c protobj.c \
- reply.c request.c response.c struct.c union.c void.c
+ reply.c request.c response.c struct.c union.c void.c \
+ py_client.py
+
+noinst_HEADERS = conn.h constant.h cookie.h error.h event.h except.h \
+ ext.h extkey.h iter.h list.h module.h protobj.h \
+ reply.h request.h response.h struct.h union.h void.h
# FIXME: find a way to autogenerate this from the XML files.