summaryrefslogtreecommitdiff
path: root/src/mesa/sources
diff options
context:
space:
mode:
authorBrian Paul <brian.paul@tungstengraphics.com>2005-09-10 16:41:17 +0000
committerBrian Paul <brian.paul@tungstengraphics.com>2005-09-10 16:41:17 +0000
commit26c7e65785df37c109f39967c3e21f9450565008 (patch)
tree37fe351ed9761035c7036a3bd0a61f996aad0e7f /src/mesa/sources
parent5704b8e57a0c618ddf51502e99e9dbd48cc3e685 (diff)
Clean-up of sources/Makefile, bug 4111
Diffstat (limited to 'src/mesa/sources')
-rw-r--r--src/mesa/sources14
1 files changed, 10 insertions, 4 deletions
diff --git a/src/mesa/sources b/src/mesa/sources
index 937405474d..627fa5144d 100644
--- a/src/mesa/sources
+++ b/src/mesa/sources
@@ -289,9 +289,8 @@ FBDEV_DRIVER_SOURCES = \
### All the core C sources
-CORE_SOURCES = \
+SOLO_SOURCES = \
$(MAIN_SOURCES) \
- $(GLAPI_SOURCES) \
$(MATH_SOURCES) \
$(ARRAY_CACHE_SOURCES) \
$(TNL_SOURCES) \
@@ -306,8 +305,15 @@ CORE_SOURCES = \
### Object files
-#CORE_OBJECTS = $(CORE_SOURCES:.c=.o) $(SLANG_CPP_SOURCES:.cpp=.o)
-CORE_OBJECTS = $(CORE_SOURCES:.c=.o)
+SOLO_OBJECTS = \
+ $(SOLO_SOURCES:.c=.o) \
+ $(ASM_SOURCES:.S=.o)
+
+GLAPI_OBJECTS = \
+ $(GLAPI_SOURCES:.c=.o) \
+ $(ASM_API_SOURCES:.S=.o)
+
+CORE_OBJECTS = $(SOLO_OBJECTS) $(GLAPI_OBJECTS)
OSMESA_DRIVER_OBJECTS = $(OSMESA_DRIVER_SOURCES:.c=.o)