diff options
author | Brian Paul <[email protected]> | 2009-02-09 10:37:38 -0700 |
---|---|---|
committer | Brian Paul <[email protected]> | 2009-02-09 10:37:38 -0700 |
commit | 2438161823630a6e647c105ad92cf2b0cd740d00 (patch) | |
tree | c9093294c4b87a653b5bb6e2e9a420cddf853edc /src/mesa/Makefile | |
parent | abbe96cb6e7581a52652030e40442b943a482840 (diff) |
mesa: build/use libmesagallium.a for gallium builds
This contains the core mesa code but excludes things not needed for gallium
such as tnl/, swrast/, swrast_setup/, etc.
Diffstat (limited to 'src/mesa/Makefile')
-rw-r--r-- | src/mesa/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/Makefile b/src/mesa/Makefile index 22ef05c335a..78b71d4676f 100644 --- a/src/mesa/Makefile +++ b/src/mesa/Makefile @@ -21,7 +21,8 @@ include sources.mak # Default: build dependencies, then asm_subdirs, then convenience # libs (.a) and finally the device drivers: -default: depend asm_subdirs libmesa.a libglapi.a driver_subdirs +default: depend asm_subdirs libmesa.a libmesagallium.a libglapi.a \ + driver_subdirs |