
ifneq ($(RUN_CMD),)

run:
ifeq ($(GDB),1)
	$(SHOW)$(DEBUGGER_CMD) $(RUN_CMD)
else
	$(SHOW)$(RUN_CMD)
endif

.PHONY: run

endif
