diff options
author | Brian Paul <[email protected]> | 2003-12-06 17:59:08 +0000 |
---|---|---|
committer | Brian Paul <[email protected]> | 2003-12-06 17:59:08 +0000 |
commit | a5a7d208c484c114990ee0a575629d073d847016 (patch) | |
tree | e4ad585a0c7027df9dcc05c37e0f786b7d210c25 /src | |
parent | 8172cec94308d39a7da22df7c9101624cd3ec5b2 (diff) |
added drivers/fbdev/glfbdev.c
Diffstat (limited to 'src')
-rw-r--r-- | src/mesa/Makefile.X11 | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/src/mesa/Makefile.X11 b/src/mesa/Makefile.X11 index c1706da5580..e99da96b617 100644 --- a/src/mesa/Makefile.X11 +++ b/src/mesa/Makefile.X11 @@ -219,6 +219,8 @@ SVGA_DRIVER_SOURCES = \ drivers/svga/svgamesa24.c \ drivers/svga/svgamesa32.c +FBDEV_DRIVER_SOURCES = \ + drivers/fbdev/glfbdev.c ### Groups of files @@ -241,7 +243,8 @@ ifndef SOLO DRIVER_SOURCES = \ $(X11_DRIVER_SOURCES) \ $(GLIDE_DRIVER_SOURCES) \ - $(SVGA_DRIVER_SOURCES) + $(SVGA_DRIVER_SOURCES) \ + $(FBDEV_DRIVER_SOURCES) endif |