uboot/tools/gdb/Makefile

26 lines
480 B
Makefile
Raw Normal View History

2002-01-27 00:56:55 +00:00
#
# (C) Copyright 2006
# Wolfgang Denk, DENX Software Engineering, wd@denx.de.
#
2002-01-27 00:56:55 +00:00
# (C) Copyright 2000
# Murray Jensen <Murray.Jensen@csiro.au>
2002-01-27 00:56:55 +00:00
#
# SPDX-License-Identifier: GPL-2.0+
2002-01-27 00:56:55 +00:00
#
ifneq ($(HOSTOS),cygwin)
2002-01-27 00:56:55 +00:00
#
# Use native tools and options
#
HOST_EXTRACFLAGS := -I$(BFD_ROOT_DIR)/include -pedantic
2002-01-27 00:56:55 +00:00
hostprogs-y := gdbsend gdbcont
2002-01-27 00:56:55 +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
always := $(hostprogs-y)
2002-01-27 00:56:55 +00:00
endif # cygwin