pinosaur
/
pinopress.git
/ blob
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
md module
[pinopress.git]
/
pinopress
1
#!/usr/bin/make -f
2
3
SITEURL := https://blog.danieliu.xyz
4
5
.PHONY: help build clean
6
7
# internal variables
8
TEMPLATE_DIR := templates
9
BUILD_DIR := build
10
ARTICLE_DIR := articles
11
12
ARTICLE_LIST := $(basename $(shell ls $(ARTICLE_DIR)))
13
14
help:
15
@echo 'pinopress help|build|clean'
16
17
build:
18
@echo 'building...'
19
20
clean:
21
@echo 'cleaning...'