diff options
author | Keith Whitwell <[email protected]> | 2009-01-08 14:10:56 +0000 |
---|---|---|
committer | Keith Whitwell <[email protected]> | 2009-01-08 14:10:56 +0000 |
commit | 002dfb12fce045d0e124301e5df805df772149d8 (patch) | |
tree | 2c34a1ab91cf546846e75960c626035ef558d39c /src/gallium/state_trackers/Makefile | |
parent | 53ce80e7cc466efae349e3a83007345bd299acd6 (diff) |
gallium: split driver-independent code out of xlib winsys
Place in new xlib state-tracker. This is a statetracker for the GLX API.
Diffstat (limited to 'src/gallium/state_trackers/Makefile')
-rw-r--r-- | src/gallium/state_trackers/Makefile | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/src/gallium/state_trackers/Makefile b/src/gallium/state_trackers/Makefile new file mode 100644 index 00000000000..7e8cc038545 --- /dev/null +++ b/src/gallium/state_trackers/Makefile @@ -0,0 +1,25 @@ +TOP = ../../.. +include $(TOP)/configs/current + + +SUBDIRS = xlib + + +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: |