1# SPDX-License-Identifier: BSD-3-Clause
2# Copyright(c) 2015-2020 Intel Corporation
3
4subdirs := l3fwd-thread pthread_shim
5
6.PHONY: all static shared clean $(subdirs)
7all static shared clean: $(subdirs)
8
9ifeq ($(filter $(shell uname -m),x86_64 arm64),)
10$(error This application is only supported for x86_64 and arm64 targets)
11endif
12
13$(subdirs):
14	$(MAKE) -C $@ $(MAKECMDGOALS)
15