diff options
author | Brian Paul <[email protected]> | 2005-09-12 15:19:19 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2005-09-12 15:19:19 +0000 |
commit | 28569c25f6c211796fd8720f98f386690bddd3c9 (patch) | |
tree | e92ddf7a88c49a1bee413e989ca61a73f4f75579 /src/mesa/sources | |
parent | 68d436140d44a9f33cb5817577ecd980c694c889 (diff) |
use ASM_API variable, bug 4415
Diffstat (limited to 'src/mesa/sources')
-rw-r--r-- | src/mesa/sources | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/mesa/sources b/src/mesa/sources index 627fa5144d1..0756dd36f7b 100644 --- a/src/mesa/sources +++ b/src/mesa/sources @@ -16,7 +16,6 @@ MAIN_SOURCES = \ main/convolve.c \ main/debug.c \ main/depth.c \ - main/dispatch.c \ main/dlist.c \ main/drawpix.c \ main/enable.c \ @@ -59,6 +58,7 @@ MAIN_SOURCES = \ main/vtxfmt.c GLAPI_SOURCES = \ + main/dispatch.c \ glapi/glapi.c \ glapi/glthread.c @@ -302,6 +302,10 @@ SOLO_SOURCES = \ # $(SLANG_C_SOURCES) +CORE_SOURCES = \ + $(GLAPI_SOURCES) \ + $(SOLO_SOURCES) + ### Object files @@ -311,7 +315,7 @@ SOLO_OBJECTS = \ GLAPI_OBJECTS = \ $(GLAPI_SOURCES:.c=.o) \ - $(ASM_API_SOURCES:.S=.o) + $(ASM_API:.S=.o) CORE_OBJECTS = $(SOLO_OBJECTS) $(GLAPI_OBJECTS) |