1
0
mirror of https://github.com/containers/ramalama.git synced 2026-02-05 15:47:26 +01:00
Files
ramalama/Makefile

37 lines
438 B
Makefile
Raw Normal View History

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 clean"
@echo
.PHONY:
install:
./install.sh
.PHONY:
build:
./container_build.sh
.PHONY:
test:
./ci.sh
.PHONY: clean
clean:
@find . -name \*~ -delete