mirror of
https://github.com/correl/sicp.git
synced 2024-11-23 19:19:56 +00:00
make clean rule
This commit is contained in:
parent
8571154996
commit
fb69e16262
1 changed files with 6 additions and 1 deletions
7
Makefile
7
Makefile
|
@ -1,9 +1,14 @@
|
||||||
.PHONY: default all org org-code jekyll serve
|
.PHONY: default all clean org org-code jekyll serve
|
||||||
|
|
||||||
default: all
|
default: all
|
||||||
|
|
||||||
all: org org-code jekyll
|
all: org org-code jekyll
|
||||||
|
|
||||||
|
clean:
|
||||||
|
rm -rf _site \
|
||||||
|
_org \
|
||||||
|
*.scheme
|
||||||
|
|
||||||
org:
|
org:
|
||||||
emacs --batch -u ${USER} -l org-publish.el
|
emacs --batch -u ${USER} -l org-publish.el
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue