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