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