Skip to content

Commit

Permalink
Update MAKEFILE
Browse files Browse the repository at this point in the history
ORCHESTRATE!

Signed-off-by: Josef Edwards <joed6834@colorado.edu>
  • Loading branch information
bearycool11 authored Nov 15, 2024
1 parent 912f81b commit 322c10e
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion MAKEFILE
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,10 @@ TARGETS = pmll arc_agi_benchmark pmll_np_solver sat_test api_llama api vector_Ma
# Deployment and Service Management
INSTALL_DIR = /opt/pmll
DEPLOY_BINARIES = silo_manager api logic_loop
ORCHESTRATION_SCRIPT = ./orchestrate.sh

# Default target: Build all
.PHONY: all clean debug help deploy start_services stop_services restart_services
.PHONY: all clean debug help deploy start_services stop_services restart_services orchestrate
all: $(TARGETS)

# SAT Test target
Expand Down Expand Up @@ -84,6 +85,12 @@ stop_services:
restart_services: stop_services start_services
@echo "Services restarted."

# Run Orchestration Script
orchestrate:
@echo "Running orchestration script..."
@chmod +x $(ORCHESTRATION_SCRIPT)
@$(ORCHESTRATION_SCRIPT)

# Run Commands
run: pmll
@echo "Running pmll..."
Expand Down Expand Up @@ -133,10 +140,12 @@ help:
@echo " start_services Start all services."
@echo " stop_services Stop all services."
@echo " restart_services Restart all services."
@echo " orchestrate Run the orchestration script."
@echo " run Run the pmll executable."
@echo " run_arc_agi_benchmark Run the arc_agi_benchmark executable."
@echo " run_pmll_np_solver Run the Pmll NP Solver."
@echo " run_sat_test Run the SAT test."
@echo " run_api_llama Run the API Llama."
@echo " run_api Run the API."
@echo " run_vector_Matrix Run the vector_Matrix executable."

0 comments on commit 322c10e

Please sign in to comment.