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.
123456789101112131415161718192021 |
- TOP = ../..
- include $(TOP)/configs/current
-
-
- SUBDIRS = auxiliary drivers
-
-
- default: subdirs
-
-
- subdirs:
- @for dir in $(SUBDIRS) ; do \
- if [ -d $$dir ] ; then \
- (cd $$dir && $(MAKE)) || exit 1 ; \
- fi \
- done
-
-
- clean:
- rm -f `find . -name \*.[oa]`
- rm -f `find . -name depend`
|