Skip to content

Commit

Permalink
Corrected makefile error
Browse files Browse the repository at this point in the history
  • Loading branch information
akhenry committed Feb 29, 2024
1 parent d214800 commit f5a1536
Showing 1 changed file with 4 additions and 7 deletions.
11 changes: 4 additions & 7 deletions docker/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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"
Expand Down

0 comments on commit f5a1536

Please sign in to comment.