aboutsummaryrefslogtreecommitdiff
path: root/libxcb/src/makefile
diff options
context:
space:
mode:
authormarha <marha@users.sourceforge.net>2009-07-25 12:18:33 +0000
committermarha <marha@users.sourceforge.net>2009-07-25 12:18:33 +0000
commit307fb760da68b26eb694895df5b7081dffe80b3c (patch)
treefee315cb2a9745c5d7a92329e41ec95d84dea14c /libxcb/src/makefile
parent1204cba5d6dbdfc8fc31cb7c4a4e467b9c55fc48 (diff)
downloadvcxsrv-307fb760da68b26eb694895df5b7081dffe80b3c.tar.gz
vcxsrv-307fb760da68b26eb694895df5b7081dffe80b3c.tar.bz2
vcxsrv-307fb760da68b26eb694895df5b7081dffe80b3c.zip
libxcb compiles again
Diffstat (limited to 'libxcb/src/makefile')
-rw-r--r--libxcb/src/makefile171
1 files changed, 105 insertions, 66 deletions
diff --git a/libxcb/src/makefile b/libxcb/src/makefile
index 3716a1356..fe7b3410e 100644
--- a/libxcb/src/makefile
+++ b/libxcb/src/makefile
@@ -1,75 +1,114 @@
-CSRCS = xproto.c \
- bigreq.c \
- composite.c \
- damage.c \
- dpms.c \
- glx.c \
- randr.c \
- record.c \
- render.c \
- res.c \
- screensaver.c \
- shape.c \
- shm.c \
- sync.c \
- xc_misc.c \
- xevie.c \
- xf86dri.c \
- xfixes.c \
- xinerama.c \
- xprint.c \
- xtest.c \
- xv.c \
- xvmc.c
-
-EXTENSION_XML = xproto.xml \
- bigreq.xml \
- composite.xml \
- damage.xml \
- dpms.xml \
- glx.xml \
- randr.xml \
- record.xml \
- render.xml \
- res.xml \
- screensaver.xml \
- shape.xml \
- shm.xml \
- sync.xml \
- xc_misc.xml \
- xevie.xml \
- xf86dri.xml \
- xfixes.xml \
- xinerama.xml \
- xprint.xml \
- xtest.xml \
- xvmc.xml \
- xv.xml
+XCBPROTO_XCBPYTHONDIR = ..\xcb-proto
+XCBPROTO_XCBINCLUDEDIR = ..\xcb-proto\src
LIBRARY=libxcb
CSRCS = \
xcb_conn.c xcb_out.c xcb_in.c xcb_ext.c xcb_xid.c \
- xcb_list.c xcb_util.c xcb_auth.c xcb_xlib.c \
+ xcb_list.c xcb_util.c xcb_auth.c \
xproto.c bigreq.c xc_misc.c
-# c-client.xsl \
-#CSRCS = xproto.c
+
+# FIXME: find a way to autogenerate this from the XML files.
+
+EXTHEADERS += composite.h
+EXTSOURCES += composite.c
+EXTENSION_XML += composite.xml
+
+EXTHEADERS += damage.h
+EXTSOURCES += damage.c
+EXTENSION_XML += damage.xml
+
+EXTHEADERS += dpms.h
+EXTSOURCES += dpms.c
+EXTENSION_XML += dpms.xml
+
+EXTHEADERS += glx.h
+EXTSOURCES += glx.c
+EXTENSION_XML += glx.xml
+
+EXTHEADERS += randr.h
+EXTSOURCES += randr.c
+EXTENSION_XML += randr.xml
+
+EXTHEADERS += record.h
+EXTSOURCES += record.c
+EXTENSION_XML += record.xml
+
+EXTHEADERS += render.h
+EXTSOURCES += render.c
+EXTENSION_XML += render.xml
+
+EXTHEADERS += res.h
+EXTSOURCES += res.c
+EXTENSION_XML += res.xml
+
+EXTHEADERS += screensaver.h
+EXTSOURCES += screensaver.c
+EXTENSION_XML += screensaver.xml
+
+EXTHEADERS += shape.h
+EXTSOURCES += shape.c
+EXTENSION_XML += shape.xml
+
+EXTHEADERS += shm.h
+EXTSOURCES += shm.c
+EXTENSION_XML += shm.xml
+
+EXTHEADERS += sync.h
+EXTSOURCES += sync.c
+EXTENSION_XML += sync.xml
+
+EXTHEADERS += xevie.h
+EXTSOURCES += xevie.c
+EXTENSION_XML += xevie.xml
+
+EXTHEADERS += xf86dri.h
+EXTSOURCES += xf86dri.c
+EXTENSION_XML += xf86dri.xml
+
+EXTHEADERS += xfixes.h
+EXTSOURCES += xfixes.c
+EXTENSION_XML += xfixes.xml
+
+EXTHEADERS += xinerama.h
+EXTSOURCES += xinerama.c
+EXTENSION_XML += xinerama.xml
+
+EXTHEADERS += xinput.h
+EXTSOURCES += xinput.c
+EXTENSION_XML += xinput.xml
+
+EXTHEADERS += xprint.h
+EXTSOURCES += xprint.c
+EXTENSION_XML += xprint.xml
+
+EXTHEADERS += xselinux.h
+EXTSOURCES += xselinux.c
+EXTENSION_XML += xselinux.xml
+
+EXTHEADERS += xtest.h
+EXTSOURCES += xtest.c
+EXTENSION_XML += xtest.xml
+
+EXTHEADERS += xv.h
+EXTSOURCES += xv.c
+EXTENSION_XML += xv.xml
+
+EXTHEADERS += xvmc.h
+EXTSOURCES += xvmc.c
+EXTENSION_XML += xvmc.xml
DEFINES += PTW32_STATIC_LIB
-#.xml.h:
-# @n=`dirname $*`; test -d $$n || (echo mkdir $$n; mkdir $$n)
-# $(XSLTPROC) --stringparam mode header \
-# --stringparam base-path $(XCBPROTO_XCBINCLUDEDIR)/ \
-# --stringparam extension-path $(XCBPROTO_XCBINCLUDEDIR)/ \
-# -o $@ $(srcdir)/c-client.xsl $<
-
-#.xml.c:
-# @n=`dirname $*`; test -d $$n || (echo mkdir $$n; mkdir $$n)
-# $(XSLTPROC) --stringparam mode source \
-# --stringparam base-path $(XCBPROTO_XCBINCLUDEDIR)/ \
-# --stringparam extension-path $(XCBPROTO_XCBINCLUDEDIR)/ \
-# -o $@ $(srcdir)/c-client.xsl $<
-
-#$(EXTENSION_XML):
-# $(LN_S) -f $(XCBPROTO_XCBINCLUDEDIR)/$@ $@
+
+BUILT_SOURCES = $(EXTSOURCES) $(EXTHEADERS)
+
+CSRCS += $(EXTSOURCES)
+
+$(EXTHEADERS) $(EXTSOURCES): c_client.py
+
+%.h: $(XCBPROTO_XCBINCLUDEDIR)\%.xml
+ python c_client.py -p $(XCBPROTO_XCBPYTHONDIR) $<
+
+%.c: $(XCBPROTO_XCBINCLUDEDIR)\%.xml
+ python c_client.py -p $(XCBPROTO_XCBPYTHONDIR) $<