diff options
author | Ian Romanick <[email protected]> | 2011-12-05 15:20:06 -0800 |
---|---|---|
committer | Ian Romanick <[email protected]> | 2011-12-13 16:07:17 -0800 |
commit | 2e168758738fae3998090d41471aeb5b13887f80 (patch) | |
tree | f10a47a4ccc275b80be7c141bf91fcbeec389423 /src/mapi/glapi/gen/Makefile | |
parent | c0d2f4c123989158a845813cb1703a7b49307a37 (diff) |
glapi/glx: Xserver wants dispatch.h, not glapidispatch.h
Signed-off-by: Ian Romanick <[email protected]>
Reviewed-by: Brian Paul <[email protected]>
Reviewed-by: Adam Jackson <[email protected]>
Diffstat (limited to 'src/mapi/glapi/gen/Makefile')
-rw-r--r-- | src/mapi/glapi/gen/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/mapi/glapi/gen/Makefile b/src/mapi/glapi/gen/Makefile index 13bd3834da4..c409285dd0f 100644 --- a/src/mapi/glapi/gen/Makefile +++ b/src/mapi/glapi/gen/Makefile @@ -43,9 +43,8 @@ XORG_GLAPI_DIR = $(XORG_BASE)/glx XORG_GLAPI_OUTPUTS = \ $(XORG_GLAPI_DIR)/glprocs.h \ - $(XORG_GLAPI_DIR)/glapioffsets.h \ $(XORG_GLAPI_DIR)/glapitable.h \ - $(XORG_GLAPI_DIR)/glapidispatch.h \ + $(XORG_GLAPI_DIR)/dispatch.h \ $(XORG_GLAPI_DIR)/glapi_gentable.c XORG_OUTPUTS = \ @@ -141,6 +140,9 @@ clean: $(XORG_GLAPI_DIR)/%.c: $(MESA_GLAPI_DIR)/%.c cp $< $@ +$(XORG_GLAPI_DIR)/dispatch.h: $(MESA_DIR)/main/dispatch.h + cp $< $@ + $(XORG_GLAPI_DIR)/%.h: $(MESA_GLAPI_DIR)/%.h cp $< $@ |