Clone of mesa.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

1234567891011121314151617181920
  1. TOP = ../../..
  2. include $(TOP)/configs/current
  3. SUBDIRS = $(GALLIUM_DRIVER_DIRS)
  4. default: subdirs
  5. subdirs:
  6. @for dir in $(SUBDIRS) ; do \
  7. if [ -d $$dir ] ; then \
  8. (cd $$dir && $(MAKE)) || exit 1 ; \
  9. fi \
  10. done
  11. clean:
  12. rm -f `find . -name \*.[oa]`