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.

123456789101112
  1. # src/gallium/Makefile
  2. TOP = ../..
  3. include $(TOP)/configs/current
  4. SUBDIRS = $(GALLIUM_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