comparison Makefile @ 404:e72853aecab8 prerelease

Fixed Makefile: now runs from the correct folder
author Giulio Moro <giuliomoro@yahoo.it>
date Wed, 15 Jun 2016 03:01:16 +0100
parents 00c3bbea4faf
children 49e708a7ae51
comparison
equal deleted inserted replaced
403:83e1acf38d35 404:e72853aecab8
225 225
226 runfg: run 226 runfg: run
227 run: ## Run PROJECT in the foreground 227 run: ## Run PROJECT in the foreground
228 run: stop Bela 228 run: stop Bela
229 @echo "Running $(RUN_COMMAND)" 229 @echo "Running $(RUN_COMMAND)"
230 @cd $(PROJECT_DIR) && sync& $(RUN_COMMAND) 230 @sync& cd $(PROJECT_DIR) && $(RUN_COMMAND)
231 runide: ## Run PROJECT for IDE (foreground, without stop or build, suppressed output, no buffering) 231 runide: ## Run PROJECT for IDE (foreground, without stop or build, suppressed output, no buffering)
232 runide: Bela 232 runide: Bela
233 @cd $(PROJECT_DIR) && sync& $(RUN_IDE_COMMAND) 233 @sync& cd $(PROJECT_DIR) && $(RUN_IDE_COMMAND)
234 runscreen: ## Run PROJECT in the background (detached screen) 234 runscreen: ## Run PROJECT in the background (detached screen)
235 runscreen: stop $(OUTPUT_FILE) 235 runscreen: stop $(OUTPUT_FILE)
236 @echo "Running $(RUN_COMMAND) in a screen" 236 @echo "Running $(RUN_COMMAND) in a screen"
237 @cd $(PROJECT_DIR) && screen -S $(SCREEN_NAME) -d -m $(RUN_COMMAND) 237 @cd $(PROJECT_DIR) && screen -S $(SCREEN_NAME) -d -m $(RUN_COMMAND)
238 runscreenfg: ## Run PROJECT in a screen in the foreground (can detach with ctrl-a ctrl-d) 238 runscreenfg: ## Run PROJECT in a screen in the foreground (can detach with ctrl-a ctrl-d)