diff options
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) |