Home | History | Annotate | Download | only in dri
      1 # src/gallium/state_trackers/dri/Makefile
      2 TOP = ../../../..
      3 include $(TOP)/configs/current
      4 
      5 SUBDIRS = drm sw
      6 
      7 default install clean:
      8 	@for dir in $(SUBDIRS) ; do \
      9 		if [ -d $$dir ] ; then \
     10 			(cd $$dir && $(MAKE) $@) || exit 1; \
     11 		fi \
     12 	done
     13