diff Makefile @ 399:ff60102d5f39 prerelease

Merge
author Giulio Moro <giuliomoro@yahoo.it>
date Wed, 15 Jun 2016 01:34:29 +0100
parents 5848f5c8bc39 db1714fe2814
children adb4fafbeaef
line wrap: on
line diff
--- a/Makefile	Tue Jun 14 18:52:10 2016 +0100
+++ b/Makefile	Wed Jun 15 01:34:29 2016 +0100
@@ -50,7 +50,7 @@
 BELA_STARTUP_SCRIPT?=/root/BeagleRT_startup.sh
 BELA_AUDIO_THREAD_NAME?=bela-audio 
 SCREEN_NAME?=Bela
-BELA_IDE_STARTUP_SCRIPT?=/root/BeagleRT_node.sh
+BELA_IDE_STARTUP_SCRIPT?=/root/Bela_node.sh
 BELA_IDE_HOME?=/root/Bela/IDE
 BELA_IDE_SCREEN_NAME?=Bela-IDE
 BELA_IDE_RUN_COMMAND?=cd $(BELA_IDE_HOME) && screen -S $(BELA_IDE_SCREEN_NAME) -d -m node index.js
@@ -251,7 +251,7 @@
 STARTUP_COMMAND=printf "\#!/bin/sh\n\#\n\# This file is autogenerated by Bela. Do not edit!\n\necho Running Bela...\nscreen -S $(SCREEN_NAME) -d -m %s $(RUN_COMMAND) %s\n"
 nostartup: ## No Bela project runs at startup 
 nostartup:
-	@echo "Disabling BeagleRT at startup..."
+	@echo "Disabling Bela at startup..."
 	@printf "#!/bin/sh\n#\n\n# This file is autogenerated by Bela. Do not edit!\n\n# Run on startup disabled -- nothing to do here\n" > $(BELA_STARTUP_SCRIPT)
 
 startuploop: ## Makes PROJECT run at startup and restarts it if it crashes
@@ -278,7 +278,7 @@
 
 BELA_IDE_STARTUP_COMMAND=printf "\#!/bin/sh\n\#\n\# This file is autogenerated by Bela. Do not edit!\n\necho Running the Bela IDE...\n$(BELA_IDE_RUN_COMMAND)\n" > $(BELA_IDE_STARTUP_SCRIPT)
 
-iderunup: ## Enables the IDE at startup
+idestartup: ## Enables the IDE at startup
 	@echo "Enabling the IDE at startup"
 	$(BELA_IDE_STARTUP_COMMAND)
 	@chmod +x $(BELA_IDE_STARTUP_SCRIPT)