summaryrefslogtreecommitdiffstats
path: root/src/mesa/drivers/dri/Makefile
Commit message (Collapse)AuthorAgeFilesLines
* DRI2: Drop sarea, implement swap buffers in the X server.Kristian Høgsberg2008-08-291-2/+0
|
* Remove generated pkg-config files on `make clean'Dan Nicholson2008-07-111-0/+1
|
* Set library and header installation directories from configurationDan Nicholson2008-07-061-6/+9
| | | | | | | | | | | | | | Currently the installation directories for libraries and headers are resolved within the install commands. For instance, the libraries will be installed to $(INSTALL_DIR)/$(LIB_DIR). This limits the flexibility of the installation, such as when the libraries should be installed to a subdirectory like /usr/lib/tls. This adds the make variables $(INSTALL_LIB_DIR) and $(INSTALL_INC_DIR) to define the locations that the libraries and headers are installed. For the static configs, this resolves exactly as before to $(INSTALL_DIR)/include and $(INSTALL_DIR)/$(LIB_DIR). For autoconf, they are derived directly from the --libdir and --includedir settings.
* DRI-specific pkg-config fileDan Nicholson2008-06-271-1/+12
| | | | | | | Since the gl pkg-config file doesn't convey any specifics about the backend in use, this adds a new pkg-config file for when DRI is in use. This can be used by the xserver build to determine if the DRI and/or GLX extensions are appropriate.
* bug #16503: use INSTALL macro instead of hard-coding to bin/minstallIan Romanick2008-06-021-3/+3
| | | | | This is only part of the fix. Someone with more autoconf-fu will have to fix the rest
* Never fail `make clean'Dan Nicholson2008-05-071-1/+1
| | | | | | Mostly some pedantic changes such that `make clean' always ignores errors. Also changed the top clean target to do the `touch configs/current' dance instead of realclean.
* Install dri_sarea.h in 'make install'Adam Jackson2008-02-181-0/+1
|
* Fix path to minstall in last commit.Adam Jackson2008-02-151-2/+2
|
* Install dri_interface.h in 'make install'.Adam Jackson2008-02-151-0/+2
|
* add missing right-parenBrian2007-05-201-1/+1
|
* Tweak the shell scripting for descending into and building subdirs.Brian2007-05-091-5/+9
| | | | | | | | | | | | | | In general, use this: @for dir in $(SUBDIRS) ; do \ if [ -d $$dir ] ; then \ (cd $$dir && $(MAKE)) || exit 1; \ fi \ done Basically, silently skip missing subdirs but generate an error and stop if there's a compilation or install problem. This was done inconsistantly before. In once case, a missing subdir was causing us to go into an infinte loop!
* LIB_DIR is now just 'lib' or 'lib64'Brian Paul2006-07-131-3/+3
| | | | | Replaced $(LIB_DIR) with $(TOP)/$(LIB_DIR), use LIB_DIR in install targets. Patch by Hanno Böck.
* replace semicolon with &&Brian Paul2005-09-131-3/+3
|
* Add an install targetKeith Whitwell2005-01-071-0/+6
|
* make rm for common not complainDave Airlie2004-06-091-1/+1
|
* Build fixing for FreeBSD. GNU make is installed as gmake, so make a MAKEEric Anholt2004-06-011-2/+2
| | | | | | 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".
* clean up the common objects..Dave Airlie2004-05-031-0/+1
|
* Allow *_dri.so to build in Mesa tree with the 'linux-dri' target.Keith Whitwell2004-04-291-0/+2
|
* First attempt at building a dri module in this treeKeith Whitwell2004-04-141-5/+3
| | | | | | | -- make target is linux-dri -- will attempt to build i830_dri.so The object builds but hasn't been tested.
* Don't use pushd/popd.Brian Paul2004-03-261-6/+2
|
* New Makefile systemBrian Paul2004-03-261-0/+31