# HG changeset patch # User Giulio Moro # Date 1465996580 -3600 # Node ID 49e708a7ae515b857661f0d4c410852b5a7229c2 # Parent f92afe6018d7392ffacc47ca81d2cd99c3c5460d Makefile: renamed iderun to idestart in order to avoid confusion with runide diff -r f92afe6018d7 -r 49e708a7ae51 Makefile --- 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