Mercurial > hg > beaglert
changeset 409:49e708a7ae51 prerelease
Makefile: renamed iderun to idestart in order to avoid confusion with runide
author | Giulio Moro <giuliomoro@yahoo.it> |
---|---|
date | Wed, 15 Jun 2016 14:16:20 +0100 |
parents | f92afe6018d7 |
children | 41436dcd2cb0 |
files | Makefile |
diffstat | 1 files changed, 4 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/Makefile Wed Jun 15 12:57:40 2016 +0100 +++ b/Makefile Wed Jun 15 14:16:20 2016 +0100 @@ -8,7 +8,7 @@ .DEFAULT_GOAL := Bela -NO_PROJECT_TARGETS=coreclean distclean stop help iderun idestop idestartup idenostartup +NO_PROJECT_TARGETS=coreclean distclean stop help idestart idestop idestartup idenostartup NO_PROJECT_TARGETS_MESSAGE=PROJECT or EXAMPLE should be set for all targets except: $(NO_PROJECT_TARGETS) # Type `$ make help` to get a description of the functionalities of this Makefile. help: ## Show this help @@ -269,8 +269,8 @@ stop: @PID=`grep $(BELA_AUDIO_THREAD_NAME) /proc/xenomai/stat | cut -d " " -f 5 | sed s/\s//g`; if [ -z $$PID ]; then echo "No process to kill"; else echo "Killing old Bela process $$PID"; kill -2 $$PID; fi; screen -X -S $(SCREEN_NAME) quit > /dev/null; exit 0; -iderun: ## Starts the on-board IDE -iderun: +idestart: ## Starts the on-board IDE +idestart: $(BELA_IDE_RUN_COMMAND) idestop: ## Stops the on-board IDE @@ -287,4 +287,4 @@ idenostartup: ## Disables the IDE at startup @echo "Disabling the IDE at startup" @printf "#!/bin/sh\n#\n\n# This file is autogenerated by Bela. Do not edit!\n\n# The Bela IDE is disabled on startup.\n" > $(BELA_IDE_STARTUP_SCRIPT) -.PHONY: all clean distclean help projectclean nostartup startup startuploop debug run runfg runscreen runscreenfg runscreenfifo stop iderun idestop iderunup idenostartup +.PHONY: all clean distclean help projectclean nostartup startup startuploop debug run runfg runscreen runscreenfg runscreenfifo stop idestart idestop idestartup idenostartup