blob: 7ffab468b1dd74678b3c5ad4de4891ed8043044a [file] [log] [blame]
# Copyright 2021 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 := os-dependent/chromeos/upstart-scripts
all:
for dir in $(SUBDIRS); do \
$(MAKE) -C $$dir all || exit 1; \
done
install:
for dir in $(SUBDIRS); do \
$(MAKE) -C $$dir install; \
done