diff options
Diffstat (limited to 'src/gallium/Makefile')
-rw-r--r-- | src/gallium/Makefile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/src/gallium/Makefile b/src/gallium/Makefile new file mode 100644 index 0000000000..36bd3623e7 --- /dev/null +++ b/src/gallium/Makefile @@ -0,0 +1,26 @@ +TOP = ../.. +include $(TOP)/configs/current + + +SUBDIRS = auxiliary drivers +# Note winsys/ needs to be built after src/mesa + + +default: subdirs + + +subdirs: + @for dir in $(SUBDIRS) ; do \ + if [ -d $$dir ] ; then \ + (cd $$dir && $(MAKE)) || exit 1 ; \ + fi \ + done + + +clean: + rm -f `find . -name \*.[oa]` + rm -f `find . -name depend` + + +# Dummy install target +install: |