blob: 5d99f3520e035006d6fa5203ab3201df2b10823e [file] [log] [blame]
# Copyright 2015 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
SUBDIRS := $(patsubst %/,%,$(dir $(wildcard */Makefile)))
.PHONY: subdirs clean $(SUBDIRS)
subdirs: $(SUBDIRS)
$(SUBDIRS):
$(MAKE) -C $@
clean:
@$(foreach dir,$(SUBDIRS),$(MAKE) -C $(dir) clean;)