mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-02 16:19:26 +01:00
676b9901cd
(EXTRA_DIST): Mention x86 and hppa headers. (Logical change 1.33)
27 lines
731 B
Makefile
27 lines
731 B
Makefile
if ARCH_IA64
|
|
include_HEADERS_tdep = include/libunwind-ia64.h
|
|
else
|
|
if ARCH_HPPA
|
|
include_HEADERS_tdep = include/libunwind-hppa.h
|
|
else
|
|
if ARCH_X86
|
|
include_HEADERS_tdep = include/libunwind-x86.h
|
|
endif # ARCH_X86
|
|
endif # ARCH_HPPA
|
|
endif # ARCH_IA64
|
|
|
|
include_HEADERS_common = $(include_HEADERS_tdep) include/libunwind-common.h \
|
|
include/libunwind-dynamic.h
|
|
|
|
if REMOTE_ONLY
|
|
include_HEADERS = $(include_HEADERS_common)
|
|
else
|
|
include_HEADERS = $(include_HEADERS_common) include/libunwind.h
|
|
endif
|
|
|
|
SUBDIRS = src tests doc
|
|
|
|
EXTRA_DIST = include/internal.h include/mempool.h \
|
|
include/libunwind-ia64.h include/tdep-ia64.h include/ia64/script.h \
|
|
include/libunwind-hppa.h include/tdep-hppa.h \
|
|
include/libunwind-x86.h include/tdep-x86.h
|