2016-11-04 13:16:09 +01:00
|
|
|
emacs ?= emacs
|
|
|
|
|
2014-10-23 21:26:17 +02:00
|
|
|
cheat.pdf: cheat-sheet.hs
|
2016-09-01 20:49:33 +02:00
|
|
|
ghc --make cheat-sheet.hs -main-is CC
|
2014-10-23 21:26:17 +02:00
|
|
|
./cheat-sheet
|
2014-10-30 22:22:34 +01:00
|
|
|
xelatex cheat-sheet.tex
|
2016-09-01 22:36:00 +02:00
|
|
|
xelatex qwerty.tex
|
2014-10-23 21:26:17 +02:00
|
|
|
./cheat-sheet
|
2016-09-01 22:36:00 +02:00
|
|
|
xelatex qwerty.tex
|
2016-11-04 13:16:09 +01:00
|
|
|
|
|
|
|
test:
|
|
|
|
$(emacs) -batch --script boon-test.el
|
|
|
|
|
2016-11-13 14:45:10 +01:00
|
|
|
Colemak.hs:
|
|
|
|
$(emacs) -batch \
|
|
|
|
--eval "(add-to-list 'load-path (expand-file-name \".\"))" \
|
|
|
|
--eval "(package-initialize)" \
|
|
|
|
-l boon-tutorial.el \
|
|
|
|
--eval '(boon-dump-cheatsheet "colemak")'
|
|
|
|
|
2016-11-04 13:16:09 +01:00
|
|
|
clean:
|
|
|
|
rm -f *.elc
|
|
|
|
|
|
|
|
.PHONY: all clean test
|
|
|
|
|