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