Clone of mesa.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

123456789101112131415161718192021222324
  1. TOP = ../../..
  2. include $(TOP)/configs/current
  3. ifeq ($(CONFIG_NAME), linux-cell)
  4. CELL_DIR = cell
  5. endif
  6. SUBDIRS = softpipe i915simple i965simple failover pipebuffer $(CELL_DIR)
  7. default: subdirs
  8. subdirs:
  9. @for dir in $(SUBDIRS) ; do \
  10. if [ -d $$dir ] ; then \
  11. (cd $$dir && $(MAKE)) || exit 1 ; \
  12. fi \
  13. done
  14. clean:
  15. rm -f `find . -name \*.[oa]`