diff options
author | Keith Whitwell <[email protected]> | 2007-08-02 20:33:58 +0100 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2007-08-02 20:33:58 +0100 |
commit | d878bdc7a107991075080f9d6d2f1489b966981f (patch) | |
tree | f9e8303316f7322d74caddef1155e189d904d1f5 /src/mesa/Makefile | |
parent | bf64be22686a8e5168bf80d1a57e367da3fffd57 (diff) |
Fix make recursion.
Unfortunately means you can't just type make in softpipe any more.
Diffstat (limited to 'src/mesa/Makefile')
-rw-r--r-- | src/mesa/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mesa/Makefile b/src/mesa/Makefile index 3055564341e..ee4cbd0d38e 100644 --- a/src/mesa/Makefile +++ b/src/mesa/Makefile @@ -149,7 +149,7 @@ depend: $(ALL_SOURCES) subdirs: @ (cd x86 ; $(MAKE)) @ (cd x86-64 ; $(MAKE)) - #(cd pipe/softpipe ; $(MAKE)) + (cd pipe/softpipe ; $(MAKE)) install: default $(INSTALL) -d $(INSTALL_DIR)/include/GL @@ -182,6 +182,7 @@ clean: (cd drivers/dri && $(MAKE) clean) (cd x86 && $(MAKE) clean) (cd x86-64 && $(MAKE) clean) + (cd pipe/softpipe ; $(MAKE) clean ) include depend |