13 lines
283 B
Makefile
13 lines
283 B
Makefile
all:
|
|
|
|
clean:
|
|
rm -f _publish/*.*
|
|
rm -rf _publish/projects
|
|
|
|
export: clean
|
|
$(MAKE) -C articles export
|
|
cask exec emacs -L $(CURDIR) -batch -l project.el -f org-publish-all
|
|
|
|
publish:
|
|
rsync -avuz --exclude=*~ --exclude=dotfiles/ --delete _publish/ \
|
|
ryuslash.org:public_html/orgweb
|