#
# Run make in each of the subdirectories
# $Id: Makefile 1 2009-10-08 18:23:02Z root $
#

SUBDIRS = kernel download reg_access 

# Install the various files
subdirs: $(SUBDIRS)

$(SUBDIRS):
	$(MAKE) -C $@

clean install:
	for dir in $(SUBDIRS) ; do \
		$(MAKE) -C $$dir $@; \
	done

.PHONY: install subdirs $(SUBDIRS) clean
