2019-06-25 11:12:58 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
2021-02-05 08:48:47 +00:00
|
|
|
# Copyright(c) 2015-2020 Intel Corporation
|
2017-04-21 10:43:26 +00:00
|
|
|
|
2021-02-05 08:48:47 +00:00
|
|
|
subdirs := l3fwd-thread pthread_shim
|
2017-04-21 10:43:26 +00:00
|
|
|
|
2021-02-05 08:48:47 +00:00
|
|
|
.PHONY: all static shared clean $(subdirs)
|
|
|
|
all static shared clean: $(subdirs)
|
2017-04-21 10:43:26 +00:00
|
|
|
|
2021-02-05 08:48:47 +00:00
|
|
|
ifeq ($(filter $(shell uname -m),x86_64 arm64),)
|
2018-05-15 09:49:22 +00:00
|
|
|
$(error This application is only supported for x86_64 and arm64 targets)
|
2017-04-21 10:43:26 +00:00
|
|
|
endif
|
|
|
|
|
2021-02-05 08:48:47 +00:00
|
|
|
$(subdirs):
|
|
|
|
$(MAKE) -C $@ $(MAKECMDGOALS)
|