build: remove deprecated qemu/qemugdb targets

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2017-08-03 10:05:16 -04:00 committed by Anas Nashif
commit b8cd707b51
2 changed files with 0 additions and 8 deletions

View file

@ -1219,8 +1219,6 @@ help:
@echo ' all - Build all targets marked with [*]' @echo ' all - Build all targets marked with [*]'
@echo '* zephyr - Build a zephyr application' @echo '* zephyr - Build a zephyr application'
@echo ' run - Build a zephyr application and run it if board supports emulation' @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 ' flash - Build and flash an application'
@echo ' debug - Build and debug an application using GDB' @echo ' debug - Build and debug an application using GDB'
@echo ' debugserver - Build and start a GDB server (port 1234 for Qemu targets)' @echo ' debugserver - Build and start a GDB server (port 1234 for Qemu targets)'

View file

@ -87,12 +87,6 @@ debug: $(DOTCONFIG)
flash: $(DOTCONFIG) flash: $(DOTCONFIG)
$(Q)$(call zephyrmake,$(O),$@) $(Q)$(call zephyrmake,$(O),$@)
qemugdb: debugserver
qemu: $(DOTCONFIG)
@echo This target is deprecated, use 'make run' instead
$(Q)$(call zephyrmake,$(O),$@)
run: $(DOTCONFIG) run: $(DOTCONFIG)
$(Q)$(call zephyrmake,$(O),$@) $(Q)$(call zephyrmake,$(O),$@)