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

123456789101112
  1. # src/gallium/drivers/Makefile
  2. TOP = ../../..
  3. include $(TOP)/configs/current
  4. SUBDIRS = $(GALLIUM_DRIVERS_DIRS)
  5. default install clean:
  6. @for dir in $(SUBDIRS) ; do \
  7. if [ -d $$dir ] ; then \
  8. (cd $$dir && $(MAKE) $@) || exit 1; \
  9. fi \
  10. done