1# 2# (C) Copyright 2006 3# Wolfgang Denk, DENX Software Engineering, wd@denx.de. 4# 5# (C) Copyright 2000 6# Murray Jensen <Murray.Jensen@csiro.au> 7# 8# SPDX-License-Identifier: GPL-2.0+ 9# 10 11ifneq ($(HOSTOS),cygwin) 12 13# 14# Use native tools and options 15# 16HOST_EXTRACFLAGS := -I$(BFD_ROOT_DIR)/include -pedantic 17 18hostprogs-y := gdbsend gdbcont 19 20gdbsend-objs := gdbsend.o error.o remote.o serial.o 21gdbcont-objs := gdbcont.o error.o remote.o serial.o 22 23always := $(hostprogs-y) 24 25endif # cygwin 26