From f5a15366395d82da37795fbcb60ffcf9cb4a579d Mon Sep 17 00:00:00 2001 From: Andrew Henry Date: Thu, 29 Feb 2024 15:18:53 -0800 Subject: [PATCH] Corrected makefile error --- docker/Makefile | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/docker/Makefile b/docker/Makefile index 604beca..34ec5f1 100644 --- a/docker/Makefile +++ b/docker/Makefile @@ -10,7 +10,7 @@ all: ## run all, yamcs-up (yamcs-down) and yamcs-simulator $(MAKE) yamcs-simulator all-10hz: - $(MAKE) yamcs-simulator-10hz + $(MAKE) yamcs-simulator-10hz yamcs-up: | yamcs-down ## bring up yamcs system docker-compose up -d @@ -20,14 +20,11 @@ yamcs-down: ## bring down yamcs system yamcs-simulator: yamcs-up ## run yamcs simulator @echo "connect via http://localhost:8090/ system make take about 50 seconds to startup" && \ - export SIMULATOR_PLAYBACK_RATE="${SIMULATOR_PLAYBACK_RATE}:-1" cd .. && $(PYTHON) ./simulator.py -yamcs-simulator-10-hz: yamcs-up ## run yamcs simulator - @echo "connect via http://localhost:8090/ system make take about 50 seconds to startup" && \ - export SIMULATOR_PLAYBACK_RATE="${SIMULATOR_PLAYBACK_RATE}:-1" - cd .. && $(PYTHON) ./simulator.py --rate=10 - +yamcs-simulator-10hz: yamcs-up ## run yamcs simulator + @echo "connect via http://localhost:8090/ system make take about 50 seconds to startup" && \ + cd .. && $(PYTHON) ./simulator.py --rate=10 yamcs-shell: ## shell into yamcs container docker-compose up -d && docker run -it yamcs "bash"