11 lines
234 B
Makefile
11 lines
234 B
Makefile
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2020 Intel Corporation
|
|
|
|
subdirs := mp_client mp_server
|
|
|
|
.PHONY: all static shared clean $(subdirs)
|
|
all static shared clean: $(subdirs)
|
|
|
|
$(subdirs):
|
|
$(MAKE) -C $@ $(MAKECMDGOALS)
|