mirror of
https://github.com/samsonjs/samhuri.net.git
synced 2026-03-25 09:05:47 +00:00
24 lines
378 B
Makefile
24 lines
378 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
|
|
|
|
test_blog:
|
|
./bin/create-test-blog.sh server/test-blog
|
|
|
|
clean:
|
|
rm -rf server/test-blog server/test-blog-origin.git
|
|
|
|
spec:
|
|
cd server && rspec -f documentation
|
|
|
|
.PHONY: compile publish publish_beta test_blog spec
|