2017-12-19 15:49:02 +00:00
|
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
2020-09-03 16:26:45 +01:00
|
|
|
# Copyright(c) 2015-2020 Intel Corporation
|
2015-12-08 06:05:16 +00:00
|
|
|
|
2020-09-03 16:26:45 +01:00
|
|
|
subdirs := l3fwd-thread pthread_shim
|
2015-12-08 06:05:16 +00:00
|
|
|
|
2020-09-03 16:26:45 +01:00
|
|
|
.PHONY: all static shared clean $(subdirs)
|
|
|
|
all static shared clean: $(subdirs)
|
2015-12-08 06:05:16 +00:00
|
|
|
|
2020-09-03 16:26:45 +01:00
|
|
|
ifeq ($(filter $(shell uname -m),x86_64 arm64),)
|
2017-07-04 01:22:41 -07:00
|
|
|
$(error This application is only supported for x86_64 and arm64 targets)
|
2016-04-08 17:20:15 +01:00
|
|
|
endif
|
|
|
|
|
2020-09-03 16:26:45 +01:00
|
|
|
$(subdirs):
|
|
|
|
$(MAKE) -C $@ $(MAKECMDGOALS)
|