73d4c99d78
This is upgrading code as-is. The build will fail. Signed-off-by: Ying Xie <ying.xie@microsoft.com>
45 lines
1.3 KiB
Plaintext
45 lines
1.3 KiB
Plaintext
#
|
|
# Copyright 2017 Broadcom
|
|
#
|
|
# This program is free software; you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License, version 2, as
|
|
# published by the Free Software Foundation (the "GPL").
|
|
#
|
|
# This program is distributed in the hope that it will be useful, but
|
|
# WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
# General Public License version 2 (GPLv2) for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# version 2 (GPLv2) along with this source code.
|
|
#
|
|
# $Id: Make.subdirs,v 1.8 Broadcom SDK $
|
|
# $Copyright: (c) 2005 Broadcom Corp.
|
|
# All Rights Reserved.$
|
|
#
|
|
# Make rules/targets for handling subdirectories
|
|
|
|
.PHONY: ${subdirs}
|
|
|
|
all:: ${subdirs}
|
|
ifdef QUIET
|
|
@$(ECHO) Subdirectory build for ${subdirs}
|
|
endif
|
|
|
|
${subdirs}::
|
|
$Q$(MAKE) -C $@ kernel_version=$(kernel_version) LINUX_MAKE_SHARED_LIB=${LINUX_MAKE_SHARED_LIB} SHAREDLIBVER=${SHAREDLIBVER}
|
|
|
|
ifeq "$(HOSTTYPE)" "Windows2000PC"
|
|
clean clean_d install distclean::
|
|
ifdef QUIET
|
|
@$(ECHO) Subdirectory $@ for ${subdirs}
|
|
endif
|
|
$Q$(FOREACH) "$(subdirs)" "${MAKE} -C ## $@"
|
|
else
|
|
clean clean_d install distclean::
|
|
ifdef QUIET
|
|
@$(ECHO) Subdirectory $@ for ${subdirs}
|
|
endif
|
|
@(for name in $(subdirs); do $(MAKE) -C $$name $@; done)
|
|
endif
|