summaryrefslogtreecommitdiff
path: root/Makefile
blob: 6487439e1eba54c62751bd5b5cd3c280bcb560c2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
build:
	@emacs	-batch -Q --no-site-file --script .emacs	\
		--eval '(find-file-literally "index.org")'	\
		--eval '(org-publish-project "blog" t)'
	@echo "Done"

serve:
	@echo "Press <C-c> to interrupt"				
	@emacs 	-batch -Q --no-site-file --script .emacs	\
		--eval '(httpd-serve-directory "./dist")'	\
		--eval '(sit-for 10000)' >/dev/null; true

stop:
	@emacs 	-batch -Q --no-site-file --script .emacs	\
		--eval '(httpd-stop)'				\