mirror of
https://github.com/tobast/libunwind-eh_elf.git
synced 2024-11-21 23:27:39 +01:00
Modify for multi-architecture support.
(Logical change 1.12)
This commit is contained in:
parent
76166fb955
commit
a2d64d9efb
1 changed files with 19 additions and 0 deletions
19
Makefile.am
19
Makefile.am
|
@ -0,0 +1,19 @@
|
|||
if ARCH_IA64
|
||||
include_HEADERS_tdep = include/libunwind-ia64.h
|
||||
else
|
||||
if ARCH_IA32
|
||||
include_HEADERS_tdep = include/libunwind-ia32.h
|
||||
endif
|
||||
endif
|
||||
|
||||
include_HEADERS_common = $(include_HEADERS_tdep) include/libunwind-common.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/libunwind-ia64.h
|
Loading…
Reference in a new issue