From b8cd707b51aa282013cac90ca2e0c31dd794c271 Mon Sep 17 00:00:00 2001 From: Anas Nashif Date: Thu, 3 Aug 2017 10:05:16 -0400 Subject: [PATCH] build: remove deprecated qemu/qemugdb targets Signed-off-by: Anas Nashif --- Makefile | 2 -- Makefile.inc | 6 ------ 2 files changed, 8 deletions(-) diff --git a/Makefile b/Makefile index 07cd3afbc9a..2f937b9838e 100644 --- a/Makefile +++ b/Makefile @@ -1219,8 +1219,6 @@ help: @echo ' all - Build all targets marked with [*]' @echo '* zephyr - Build a zephyr application' @echo ' run - Build a zephyr application and run it if board supports emulation' - @echo ' qemu - Build a zephyr application and run it in qemu [deprecated]' - @echo ' qemugdb - Same as 'qemu' but start a GDB server on port 1234 [deprecated]' @echo ' flash - Build and flash an application' @echo ' debug - Build and debug an application using GDB' @echo ' debugserver - Build and start a GDB server (port 1234 for Qemu targets)' diff --git a/Makefile.inc b/Makefile.inc index d8808324513..e034dd65a5c 100644 --- a/Makefile.inc +++ b/Makefile.inc @@ -87,12 +87,6 @@ debug: $(DOTCONFIG) flash: $(DOTCONFIG) $(Q)$(call zephyrmake,$(O),$@) -qemugdb: debugserver - -qemu: $(DOTCONFIG) - @echo This target is deprecated, use 'make run' instead - $(Q)$(call zephyrmake,$(O),$@) - run: $(DOTCONFIG) $(Q)$(call zephyrmake,$(O),$@)