aba2af9936
The makefiles for some of the multi_process example files were missing SPDX license headers, so add them. These Makefiles completely replaced the older makefiles and were written from scratch, not based on previous versions, so add a new copyright year on them. Fixes: 13abe17c3cd4 ("examples/multi_process: convert to pkg-config-based build") Suggested-by: Stephen Hemminger <stephen@networkplumber.org> Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
11 lines
265 B
Makefile
11 lines
265 B
Makefile
# SPDX-License-Identifier: BSD-3-Clause
|
|
# Copyright(c) 2020 Intel Corporation
|
|
|
|
subdirs := client_server_mp hotplug_mp simple_mp symmetric_mp
|
|
|
|
.PHONY: all static shared clean $(subdirs)
|
|
all static shared clean: $(subdirs)
|
|
|
|
$(subdirs):
|
|
$(MAKE) -C $@ $(MAKECMDGOALS)
|