1
0
Fork 0
mirror of https://github.com/tobast/libunwind-eh_elf.git synced 2024-06-02 17:22:37 +02:00

Build bt and exc programs only during native builds.

(Logical change 1.5)
This commit is contained in:
(none)!davidm 2002-02-22 21:58:53 +00:00
parent f275c38236
commit fcb6a7d272

View file

@ -1,7 +1,11 @@
CPPFLAGS = -I../../include
CFLAGS = -g -O -Wall
PROGS = bt exc
local_PROGS = bt exc
ifeq ($(ARCH),$(HOSTARCH))
PROGS += $(local_PROGS)
endif
all: $(PROGS)