Donnie Berkholz wrote:
On 15:19 Tue 08 Jul     , Brian Paul wrote:
I'm hoping to wrap this up soon, so timely feedback would be appreciated. Thanks.

src/mesa/drivers/Makefile isn't in the tarball, so it doesn't build. Should there be some sort of distcheck equivalent? Other than that, my i965 works fine. All the DRI drivers built, too.

Ooops. Sorry. Missing makefile is attached. I'll roll a new tarball soon...

-Brian

# src/mesa/drivers/Makefile

TOP = ../../..
include $(TOP)/configs/current


default:
        @for dir in $(DRIVER_DIRS) ; do \
                if [ -d $$dir ] ; then \
                        (cd $$dir && $(MAKE)) || exit 1; \
                fi \
        done


clean:
        @for dir in $(DRIVER_DIRS) ; do \
                if [ -d $$dir ] ; then \
                        (cd $$dir && $(MAKE) clean) || exit 1; \
                fi \
        done


install:
        @for dir in $(DRIVER_DIRS) ; do \
                if [ -d $$dir ] ; then \
                        (cd $$dir && $(MAKE) install) || exit 1; \
                fi \
        done

-------------------------------------------------------------------------
Sponsored by: SourceForge.net Community Choice Awards: VOTE NOW!
Studies have shown that voting for your favorite open source project,
along with a healthy diet, reduces your potential for chronic lameness
and boredom. Vote Now at http://www.sourceforge.net/community/cca08
_______________________________________________
Mesa3d-dev mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/mesa3d-dev

Reply via email to