From 7044d455e943e9b47d8e9bc12b5b60e9101c0c3c Mon Sep 17 00:00:00 2001 From: Daniel J Walsh Date: Fri, 26 Jul 2024 11:38:41 -0400 Subject: [PATCH] Add simple Makefile Signed-off-by: Daniel J Walsh --- Makefile | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..5eae07d --- /dev/null +++ b/Makefile @@ -0,0 +1,39 @@ +MAKEFLAGS += -j2 +default: help + +help: + @echo "Build Container" + @echo + @echo " - make build" + @echo + @echo "Install ramalama" + @echo + @echo " - make install" + @echo + @echo "Test ramalama" + @echo + @echo " - make test" + @echo + @echo "Clean the repository" + @echo + @echo " - make test" + @echo + +# +# Create instructlab AI container images +# +.PHONY: +install: + ./install.sh + +.PHONY: +build: + ./container_build.sh + +.PHONY: +test: + ./ci.sh + +.PHONY: clean +clean: + @find . -name \*~ -delete