diff options
Diffstat (limited to 'libxcb/src/makefile.srcs')
-rwxr-xr-x[-rw-r--r--] | libxcb/src/makefile.srcs | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/libxcb/src/makefile.srcs b/libxcb/src/makefile.srcs index 0dc043ece..37dd181b8 100644..100755 --- a/libxcb/src/makefile.srcs +++ b/libxcb/src/makefile.srcs @@ -2,14 +2,20 @@ ifneq ($(NORELDBG),1) $(error NORELDBG should have been set to 1) endif +PACKAGE_STRING=libxcb +XORG_MAN_PAGE=libxcb +LIB_MAN_SUFFIX=xcb + XCBPROTO_XCBPYTHONDIR = ../xcb-proto XCBPROTO_XCBINCLUDEDIR = ../xcb-proto/src %.h: $(XCBPROTO_XCBINCLUDEDIR)\%.xml - python c_client.py -p $(XCBPROTO_XCBPYTHONDIR) $(subst $/,/,$<) + python c_client.py -c "$(PACKAGE_STRING)" -l "$(XORG_MAN_PAGE)" \ + -s "$(LIB_MAN_SUFFIX)" -p $(XCBPROTO_XCBPYTHONDIR) $(subst $/,/,$<) %.c: $(XCBPROTO_XCBINCLUDEDIR)\%.xml - python c_client.py -p $(XCBPROTO_XCBPYTHONDIR) $(subst $/,/,$<) + python c_client.py -c "$(PACKAGE_STRING)" -l "$(XORG_MAN_PAGE)" \ + -s "$(LIB_MAN_SUFFIX)" -p $(XCBPROTO_XCBPYTHONDIR) $(subst $/,/,$<) CLEANRULEPOSTFIX=noobjs |