diff options
Diffstat (limited to 'libxcb/src')
-rw-r--r-- | libxcb/src/makefile.srcs | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libxcb/src/makefile.srcs b/libxcb/src/makefile.srcs index d91835aeb..0dc043ece 100644 --- a/libxcb/src/makefile.srcs +++ b/libxcb/src/makefile.srcs @@ -2,14 +2,14 @@ ifneq ($(NORELDBG),1) $(error NORELDBG should have been set to 1) endif -XCBPROTO_XCBPYTHONDIR = ..\xcb-proto -XCBPROTO_XCBINCLUDEDIR = ..\xcb-proto\src +XCBPROTO_XCBPYTHONDIR = ../xcb-proto +XCBPROTO_XCBINCLUDEDIR = ../xcb-proto/src %.h: $(XCBPROTO_XCBINCLUDEDIR)\%.xml - python c_client.py -p $(XCBPROTO_XCBPYTHONDIR) $< + python c_client.py -p $(XCBPROTO_XCBPYTHONDIR) $(subst $/,/,$<) %.c: $(XCBPROTO_XCBINCLUDEDIR)\%.xml - python c_client.py -p $(XCBPROTO_XCBPYTHONDIR) $< + python c_client.py -p $(XCBPROTO_XCBPYTHONDIR) $(subst $/,/,$<) CLEANRULEPOSTFIX=noobjs |