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