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.

Makefile 281B

123456789101112131415161718192021
  1. TOP = ../..
  2. include $(TOP)/configs/current
  3. SUBDIRS = auxiliary drivers
  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]`
  13. rm -f `find . -name depend`