1# 2# Copyright (C) 2023 Apple Inc. All rights reserved. 3# 4 5# the xnu build system will only ever call us with the default target 6.DEFAULT_GOAL := install 7 8DSTSUBPATH := $(DSTROOT)/AppleInternal/CoreOS/tests/lldbmacros 9 10# 11# Installs full source tree because tests depend on dSYM sources. 12# It is not required to pull them from dSYM because contents are 13# identical. 14# 15 16EXCLUDES := --exclude=Makefile 17 18 19 20install: 21 mkdir -p $(DSTSUBPATH) 22 rsync -rlpt $(EXCLUDES) $(SRCROOT)/* $(DSTSUBPATH)/ 23