boon/Makefile

19 lines
268 B
Makefile
Raw Normal View History

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
clean:
rm -f *.elc
.PHONY: all clean test