Skip to content

Commit

Permalink
Add Makefile.
Browse files Browse the repository at this point in the history
  • Loading branch information
charlesroelli committed Oct 29, 2016
1 parent dfa1aa2 commit fcc6537
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 1 deletion.
12 changes: 12 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
.PHONY: all clean

ELCFILES = $(addsuffix .elc, $(basename $(wildcard *.el)))

all: $(ELCFILES)

%.elc : %.el
@echo Compiling $<
@emacs -batch -q -no-site-file -f batch-byte-compile $<

clean:
@rm -f *.elc
2 changes: 1 addition & 1 deletion README.org
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
- org-board-log-wget-invocation :: whether to log the archival process command in the root of the archival directory (defaults to true).
- org-board-domain-regexp-alist :: apply certain options when a domain matches a regular expression. See the docstring for details. As an example, this is used to make sure that =wget= not send a User Agent string when archiving from Google Cache, which will not normally serve pages to it.
** Known limitations
Options like "--header: 'Agent Blabla'" cannot be specified as
Options like "--header: 'Agent X" cannot be specified as
properties, because the property API splits on spaces, and such an
option has to be passed to the =wget= process as one argument. To
work around this, add these types of options to
Expand Down

0 comments on commit fcc6537

Please sign in to comment.