summaryrefslogtreecommitdiff
path: root/src/gallium/state_trackers/Makefile
diff options
context:
space:
mode:
authorKeith Whitwell <keithw@vmware.com>2009-01-08 14:10:56 +0000
committerKeith Whitwell <keithw@vmware.com>2009-01-08 14:10:56 +0000
commit002dfb12fce045d0e124301e5df805df772149d8 (patch)
tree2c34a1ab91cf546846e75960c626035ef558d39c /src/gallium/state_trackers/Makefile
parent53ce80e7cc466efae349e3a83007345bd299acd6 (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/Makefile25
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 0000000000..7e8cc03854
--- /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: