comparison Makefile @ 414:fc470c216464 prerelease

Makefile less verbose
author Giulio Moro <giuliomoro@yahoo.it>
date Thu, 16 Jun 2016 01:44:25 +0100
parents 41436dcd2cb0
children f4c41419f2e3
comparison
equal deleted inserted replaced
413:d874b5696078 414:fc470c216464
282 282
283 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) 283 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)
284 284
285 idestartup: ## Enables the IDE at startup 285 idestartup: ## Enables the IDE at startup
286 @echo "Enabling the IDE at startup" 286 @echo "Enabling the IDE at startup"
287 $(BELA_IDE_STARTUP_COMMAND) 287 @$(BELA_IDE_STARTUP_COMMAND)
288 @chmod +x $(BELA_IDE_STARTUP_SCRIPT) 288 @chmod +x $(BELA_IDE_STARTUP_SCRIPT)
289 289
290 idenostartup: ## Disables the IDE at startup 290 idenostartup: ## Disables the IDE at startup
291 @echo "Disabling the IDE at startup" 291 @echo "Disabling the IDE at startup"
292 @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) 292 @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)