25d3438c8f
Remove references to the old make build system and use pkg-config for building these examples. Signed-off-by: Kevin Laatz <kevin.laatz@intel.com>
11 lines
231 B
Makefile
11 lines
231 B
Makefile
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2016-2020 Intel Corporation
|
|
|
|
subdirs := node server
|
|
|
|
.PHONY: all static shared clean $(subdirs)
|
|
all static shared clean: $(subdirs)
|
|
|
|
$(subdirs):
|
|
$(MAKE) -C $@ $(MAKECMDGOALS)
|