mirror of
https://github.com/containers/ramalama.git
synced 2026-02-05 06:46:39 +01:00
39
Makefile
Normal file
39
Makefile
Normal file
@@ -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
|
||||
Reference in New Issue
Block a user