Skip to content

Commit

Permalink
Add simple Makefile
Browse files Browse the repository at this point in the history
Signed-off-by: Daniel J Walsh <[email protected]>
  • Loading branch information
rhatdan committed Jul 26, 2024
1 parent a3a17f6 commit 7044d45
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 7044d45

Please sign in to comment.