1
0
mirror of https://github.com/containers/ramalama.git synced 2026-02-05 06:46:39 +01:00

Add simple Makefile

Signed-off-by: Daniel J Walsh <dwalsh@redhat.com>
This commit is contained in:
Daniel J Walsh
2024-07-26 11:38:41 -04:00
parent a3a17f65b5
commit 7044d455e9

39
Makefile Normal file
View 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