diff options
author | Owain Ainsworth <oga@cvs.openbsd.org> | 2010-05-10 22:32:31 +0000 |
---|---|---|
committer | Owain Ainsworth <oga@cvs.openbsd.org> | 2010-05-10 22:32:31 +0000 |
commit | 874c3f202a3a8633ba9af4ae0920c6e4b419085d (patch) | |
tree | a8a85f244568acbdb79508a538ee73b0451fa718 /driver/xf86-video-intel/Makefile.am | |
parent | b3e95d7d69646862364768b6a4aa6ed0b54e17ff (diff) |
Update the intel driver to 2.9.1 plus backports.
2.9.1 is the last version of the intel DDX that supports UMS (User
modesetting), with 2.10 onwards being purely KMS only. As such, this
driver contains backports of almost every correctness or performance
related fix to the rendering layer in later intel drivers. This driver
*REQUIRES* a GEM enabled kernel. it claims to support non-gem mode but
this is essentially unmaintained and due to the way the abstraciton
works is slow, if it works at all (it often does not). You have been
warned.
tested by many many people on tech over the last few weeks.
Diffstat (limited to 'driver/xf86-video-intel/Makefile.am')
-rw-r--r-- | driver/xf86-video-intel/Makefile.am | 13 |
1 files changed, 10 insertions, 3 deletions
diff --git a/driver/xf86-video-intel/Makefile.am b/driver/xf86-video-intel/Makefile.am index 68c124300..f4239dee9 100644 --- a/driver/xf86-video-intel/Makefile.am +++ b/driver/xf86-video-intel/Makefile.am @@ -18,9 +18,16 @@ # IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN # CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -AUTOMAKE_OPTIONS = foreign SUBDIRS = uxa src man +MAINTAINERCLEANFILES = ChangeLog INSTALL -EXTRA_DIST = README AUTHORS NEWS -DISTCLEANFILES = doltcompile +.PHONY: ChangeLog INSTALL + +INSTALL: + $(INSTALL_CMD) + +ChangeLog: + $(CHANGELOG_CMD) + +dist-hook: ChangeLog INSTALL |