forked from bkrabach/recipe-executor
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
20 lines (17 loc) · 870 Bytes
/
Copy pathMakefile
File metadata and controls
20 lines (17 loc) · 870 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
repo_root = $(shell git rev-parse --show-toplevel)
include $(repo_root)/tools/makefiles/python.mk
# Build AI context files for the recipe executor
.PHONY: recipe-executor-context
recipe-executor-context:
@echo "Building AI context files for recipe executor development..."
@python $(repo_root)/tools/build_ai_context_files.py
# Create new recipe executor code from scratch using the recipe executor itself
.PHONY: recipe-executor-create
recipe-executor-create:
@echo "Generating recipe executor code from scratch from recipe..."
@python recipe_executor/main.py recipes/recipe_executor/create.json
# Edit/revise the existing recipe executor code using the recipe executor itself
.PHONY: recipe-executor-edit
recipe-executor-edit:
@echo "Revising the existing recipe executor code from recipe..."
@python recipe_executor/main.py recipes/recipe_executor/edit.json