Skip to content

Commit

Permalink
Merge pull request #3 from rhatdan/makefile
Browse files Browse the repository at this point in the history
Add simple Makefile
  • Loading branch information
ericcurtin authored Jul 26, 2024
2 parents a3a17f6 + 7044d45 commit 2791127
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -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

0 comments on commit 2791127

Please sign in to comment.