summaryrefslogtreecommitdiff
path: root/src/mesa/Makefile.old
AgeCommit message (Collapse)AuthorFilesLines
2012-07-25Remove redundant osmesa shared library install from Makefile.oldJon TURNEY1-27/+0
Since osmesa now has been converted to Makefile.am, an appropriate install: rule is generated to install the shared libary, so we no longer need to do that in src/mesa/Makefile.old This leaves nothing in src/mesa/Makefile.old but the tags: rule, so move that to Makefile.am and remove Makefile.old Also, nothing now uses OSMESA_LIB_GLOB anymore, so remove it Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk> Reviewed-by: Matt Turner <mattst88@gmail.com> Reviewed-by: Brian Paul <brianp@vmware.com> Reviewed-by: Eric Anholt <eric@anholt.net>
2012-07-13automake: convert libmesa and libmesagalliumJon TURNEY1-56/+1
* "configure substitutions are not allowed in _SOURCES variables" in automake, so instead of MESA_ASM_FILES, use some AM_CONDITIONALS to choose which architecture's asm sources are used in libmesa_la_SOURCES. (Can't remove MESA_ASM_FILES autoconf variable as it's still used in sources.mak) * Update to link with the .la file in other Makefile.am files, and make a link to the .a file for the convenience of other Makefiles which have not yet been converted to automake v2: Remove stray -static from LDFLAGS v3: Remove .a compatibility link on clean Signed-off-by: Jon TURNEY <jon.turney@dronecode.org.uk> Reviewed-by: Eric Anholt <eric@anholt.net> Tested-by: Matt Turner <mattst88@gmail.com>
2012-06-21automake: Convert Mesa built sources generation to automake.Eric Anholt1-61/+0
2012-06-21mesa: Move GL header installation to automake.Eric Anholt1-12/+1
This cuts some cruft related to osmesa where we were being careful to not install headers twice.
2012-06-21automake: Move mesa subdirs processing to automake.Eric Anholt1-45/+2
2012-06-21automake: Move .pc installation to automake.Eric Anholt1-10/+2
2012-06-21automake: Move the master Mesa makefile to Makefile.old.Eric Anholt1-0/+205
This will let me incrementally move stuff to automake without converting libmesa.a all at once.