diff options
author | Chia-I Wu <[email protected]> | 2010-02-24 11:20:14 +0800 |
---|---|---|
committer | Chia-I Wu <[email protected]> | 2010-02-25 21:32:58 +0800 |
commit | 27d260b41038e0c19c8f24b8bdb2c004c1eb7aa2 (patch) | |
tree | a0f1060d6be58eee33228539baac35c7e7d565dc /src/mesa/Makefile.mgw | |
parent | 4cb13b433cfdaa1295e5df048d7ef614545f6e16 (diff) |
glapi: Move src/mesa/main/dispatch.c to glapi and rename.
main/dispatch.c is a glapi source file. It is part of GLAPI_SOURCES in
sources.mak and part of glapi_sources in SConscript. This commit moves
it to glapi/ and renames it to glapi_dispatch.c.
Diffstat (limited to 'src/mesa/Makefile.mgw')
-rw-r--r-- | src/mesa/Makefile.mgw | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mesa/Makefile.mgw b/src/mesa/Makefile.mgw index e894c6277d1..b90384d04a7 100644 --- a/src/mesa/Makefile.mgw +++ b/src/mesa/Makefile.mgw @@ -200,7 +200,7 @@ ifeq (1,1) x86/glapi_x86.o: x86/glapi_x86.S $(CC) -o $@ $(CFLAGS) -DSTDCALL_API -c $< else -main/dispatch.o: main/dispatch.c +glapi/glapi_dispatch.o: glapi/glapi_dispatch.c $(CC) -o $@ $(CFLAGS) -UUSE_X86_ASM -c $< glapi/glapi.o: glapi/glapi.c $(CC) -o $@ $(CFLAGS) -UUSE_X86_ASM -c $< |