2002-01-27 00:56:55 +00:00
|
|
|
#
|
2006-09-01 17:49:50 +00:00
|
|
|
# (C) Copyright 2006
|
|
|
|
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
#
|
2002-01-27 00:56:55 +00:00
|
|
|
# (C) Copyright 2000
|
2005-08-12 21:20:59 +00:00
|
|
|
# Murray Jensen <Murray.Jensen@csiro.au>
|
2002-01-27 00:56:55 +00:00
|
|
|
#
|
2013-07-08 07:37:19 +00:00
|
|
|
# SPDX-License-Identifier: GPL-2.0+
|
2002-01-27 00:56:55 +00:00
|
|
|
#
|
|
|
|
|
2014-02-04 08:24:10 +00:00
|
|
|
ifneq ($(HOSTOS),cygwin)
|
2002-01-27 00:56:55 +00:00
|
|
|
|
|
|
|
#
|
|
|
|
# Use native tools and options
|
|
|
|
#
|
2014-02-04 08:24:10 +00:00
|
|
|
HOST_EXTRACFLAGS := -I$(BFD_ROOT_DIR)/include -pedantic
|
2002-01-27 00:56:55 +00:00
|
|
|
|
2014-02-04 08:24:10 +00:00
|
|
|
hostprogs-y := gdbsend gdbcont
|
2002-01-27 00:56:55 +00:00
|
|
|
|
2014-02-04 08:24:10 +00:00
|
|
|
gdbsend-objs := gdbsend.o error.o remote.o serial.o
|
|
|
|
gdbcont-objs := gdbcont.o error.o remote.o serial.o
|
2002-01-27 00:56:55 +00:00
|
|
|
|
2014-02-04 08:24:10 +00:00
|
|
|
always := $(hostprogs-y)
|
2002-01-27 00:56:55 +00:00
|
|
|
|
|
|
|
endif # cygwin
|