Makefile 480 B

12345678910111213141516171819202122232425
  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. ifneq ($(HOSTOS),cygwin)
  11. #
  12. # Use native tools and options
  13. #
  14. HOST_EXTRACFLAGS := -I$(BFD_ROOT_DIR)/include -pedantic
  15. hostprogs-y := gdbsend gdbcont
  16. gdbsend-objs := gdbsend.o error.o remote.o serial.o
  17. gdbcont-objs := gdbcont.o error.o remote.o serial.o
  18. always := $(hostprogs-y)
  19. endif # cygwin