aboutsummaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/Makefile.template
Commit message (Collapse)AuthorAgeFilesLines
* Replace `pkg-config --cflags libdrm` with LIBDRM_CFLAGS, remove disabled ↵Brian2007-05-101-9/+5
| | | | lines, remove obsolete comments.
* Makefile clean-ups for miniglx.Brian2007-05-041-1/+2
|
* Merge texmem-0-3-branch.Keith Whitwell2006-11-011-1/+6
|
* change make depend output redirection to 2>&1 (bug 8344)Brian Paul2006-09-181-1/+1
|
* LIB_DIR is now just 'lib' or 'lib64'Brian Paul2006-07-131-5/+5
| | | | | Replaced $(LIB_DIR) with $(TOP)/$(LIB_DIR), use LIB_DIR in install targets. Patch by Hanno Böck.
* Use $(LIB_DIR) instead of $(TOP)/lib since libraries sometimes go into lib64/.Brian Paul2006-06-261-1/+1
| | | | Probably need to fix the install destinations too...
* New 'install' targets in makefile. See bug 2372.Brian Paul2006-06-221-2/+3
|
* remove some unneeded includesDave Airlie2006-05-021-3/+1
|
* move the pkg config flags for libdrm to the bottomDave Airlie2006-05-021-2/+2
|
* depend is not a .PHONY targetBrian Paul2006-04-211-1/+0
|
* replace >&/dev/null with >/dev/null so it works with all shellsBrian Paul2006-04-071-1/+1
|
* make miniglx use libdrm properlyDave Airlie2006-04-071-3/+2
|
* Replace DEFINES with DRIVER_DEFINES. If a driver needs to set extra flags,Brian Paul2006-04-061-4/+4
| | | | | do so with DRIVER_DEFINES. This eliminates the duplicated flags we were passing to each cc command.
* merge from texman branchmesa_20060325Brian Paul2006-03-261-1/+1
|
* Add _mesa_exec_malloc() and _mesa_exec_free() for allocatingKeith Whitwell2005-10-181-1/+0
| | | | | executable memory. Based on Thomas Hellstrom's patch. TODO: glapi.c also needs this, but cannot access this code.
* use mklib script to make drivers instead of gcc -sharedBrian Paul2005-09-141-3/+2
|
* Use mklib script instead of ar. Make libmesa.a instead of mesa.aBrian Paul2005-09-061-1/+1
|
* Convert libGL and DRI drivers to require libdrm.Adam Jackson2005-08-191-3/+2
| | | | | | libdrm can be had from: http://people.freedesktop.org/~ajax/libdrm/
* More EGL prep. No impact on anything outside of EGLJon Smirl2005-08-051-1/+2
|
* Use the routines supplied in the __DRIinterfaceMethods structure to create aIan Romanick2005-07-281-2/+1
| | | | | destroy __GLcontextModes structures. This eliminates the need for DRI drivers to ever link with glcontextmodes.c.
* replace gcc with $(CC) (Egbert Eich)Brian Paul2005-07-151-4/+2
|
* Add a freebsd-dri-amd64 config, and quiet makedepend slightly by making anEric Anholt2005-05-281-1/+1
| | | | | EXPAT_INCLUDES config variable (set on FreeBSD) which is then used in Makefile.template's INCLUDES.
* First attempt at getting egl support up on dumb framebuffer.Jon Smirl2005-05-131-1/+2
| | | | Seems to be mostly working. Not all of egl API is implemented.
* Refactor COMMON_SOURCES up to Makefile.templateAdam Jackson2005-05-051-0/+10
|
* Make linux-dri-x86-64 more like linux-dri-x86. Add ARCH_FLAGS. This isIan Romanick2005-04-061-1/+1
| | | | | | where things like "-m64" or "-m32" should be specified. Using this, a 32-bit DRI build can be done on an x86-64 system by doing 'ARCH_CFLAGS=-m32 make linux-dri-x86'. Minor tweaks to linux-dri to support these changes.
* Bug #2428: #ifdef GLX_DIRECT_RENDERING in DRI drivers is pointless.Adam Jackson2005-01-311-5/+0
|
* Remove -C flags for install which aren't universally supported.Keith Whitwell2005-01-071-2/+2
|
* Improve the semantics of the 'install' target to make sure the rightKeith Whitwell2005-01-071-3/+10
| | | | | | file is really being installed. Useful if you have multiple versions of a single driver directory hanging around and want to switch between them for testing.
* Use DRM headers from $(DRM_SOURCE_PATH)/shared-core instead of .../shared.Felix Kuehling2005-01-011-4/+3
|
* Get linux-solo dependencies building correctly,Keith Whitwell2004-12-091-1/+1
| | | | Make sure symlinks are built in driver directories before running makedepend.
* Improve the behaviour of the build system wrt depend files.Keith Whitwell2004-12-081-2/+2
| | | | | | | | - Remove the -Y option for makedepend, so that the standard directories are searched - No longer pipe the multiple errors that the -Y option caused into /dev/null -- we want to know about these failures. - Fix up a few other misc makedepend failures.
* Bug #1679: Link DRI drivers against DRI_LIB_DEPS, not GL_LIB_DEPS.Adam Jackson2004-10-251-1/+1
|
* make clean should remove depend.bak too (Sérgio Moneiro Basto)Brian Paul2004-10-041-1/+2
|
* Converted the Savage driver to the new DRI interface and enabled compilationFelix Kuehling2004-08-221-0/+1
| | | | in the Mesa tree.
* This should make most linux-solo drivers work again. Mainly a fixJon Smirl2004-06-291-4/+2
| | | | | for changing SAREA size form DRM_PAGE_SIZE to SAREA_MAX. fb driver is still broken.
* Mesa-solo builds with these changes. There are still more fixups needed toJon Smirl2004-06-261-0/+1
| | | | | get individual drivers working again. This converts miniglx to the new dri interface. Thanks to Erdi Chen for the new interface code.
* remove depend on cleanDave Airlie2004-06-091-1/+1
|
* Missed in last commit:Eric Anholt2004-06-011-1/+1
| | | | | | | Build fixing for FreeBSD. GNU make is installed as gmake, so make a MAKE variable (defaults to "make") and use that. Use the MKDEP and MKDEP_OPTIONS more. Our shell isn't bash, so change the instances of ">& /dev/null" to a more compatible "> /dev/null 2>&1".
* the config is included by the Makefiles that includes this file...Dave Airlie2004-05-031-2/+0
|
* Define GLX_DIRECT_RENDERING in Makefile.templateKeith Whitwell2004-04-301-0/+4
|
* Allow *_dri.so to build in Mesa tree with the 'linux-dri' target.Keith Whitwell2004-04-291-4/+7
|
* add drm source dir for solo includesDave Airlie2004-04-151-0/+1
|
* Link against GL_LIB_DEPSKeith Whitwell2004-04-141-2/+2
|
* First attempt at building a dri module in this treeKeith Whitwell2004-04-141-0/+94
-- make target is linux-dri -- will attempt to build i830_dri.so The object builds but hasn't been tested.