diff options
author | Brian Paul <brianp@vmware.com> | 2009-02-28 11:56:15 -0700 |
---|---|---|
committer | Brian Paul <brianp@vmware.com> | 2009-02-28 11:56:15 -0700 |
commit | 23682dc6299ff624405eec4ea61fa504d71764c6 (patch) | |
tree | b949e9b38293923064d654c06ca2d3cbbf90c720 | |
parent | 8d475822e6e19fa79719c856a2db5b6a205db1b9 (diff) |
mesa: just re-order some parts and update comments in sources.mak
-rw-r--r-- | src/mesa/sources.mak | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/mesa/sources.mak b/src/mesa/sources.mak index 7c710103cd..357661456a 100644 --- a/src/mesa/sources.mak +++ b/src/mesa/sources.mak @@ -308,9 +308,7 @@ COMMON_DRIVER_SOURCES = \ drivers/common/driverfuncs.c - -### All the core C sources - +# Sources for building non-Gallium drivers MESA_SOURCES = \ $(MAIN_SOURCES) \ $(MATH_XFORM_SOURCES) \ @@ -323,12 +321,7 @@ MESA_SOURCES = \ $(ASM_C_SOURCES) \ $(SLANG_SOURCES) -ALL_SOURCES = \ - $(MESA_SOURCES) \ - $(GLAPI_SOURCES) \ - $(MESA_ASM_SOURCES) \ - $(STATETRACKER_SOURCES) - +# Sources for building Gallium drivers MESA_GALLIUM_SOURCES = \ $(MAIN_SOURCES) \ $(MATH_SOURCES) \ @@ -337,6 +330,13 @@ MESA_GALLIUM_SOURCES = \ $(SHADER_SOURCES) \ $(SLANG_SOURCES) +# All the core C sources, for dependency checking +ALL_SOURCES = \ + $(MESA_SOURCES) \ + $(GLAPI_SOURCES) \ + $(MESA_ASM_SOURCES) \ + $(STATETRACKER_SOURCES) + ### Object files |