mirror of
https://github.com/samsonjs/samhuri.net.git
synced 2026-03-25 09:05:47 +00:00
15 lines
204 B
Makefile
15 lines
204 B
Makefile
all: compile
|
|
|
|
compile:
|
|
@echo
|
|
./bin/compile.sh .
|
|
|
|
publish: compile
|
|
@echo
|
|
./bin/publish.sh --delete
|
|
|
|
publish_beta: compile
|
|
@echo
|
|
./bin/publish.sh --beta --delete
|
|
|
|
.PHONY: compile publish publish_beta
|