mirror of
https://github.com/vale981/boon
synced 2025-03-05 09:31:43 -05:00
18 lines
268 B
Makefile
18 lines
268 B
Makefile
emacs ?= emacs
|
|
|
|
cheat.pdf: cheat-sheet.hs
|
|
ghc --make cheat-sheet.hs -main-is CC
|
|
./cheat-sheet
|
|
xelatex cheat-sheet.tex
|
|
xelatex qwerty.tex
|
|
./cheat-sheet
|
|
xelatex qwerty.tex
|
|
|
|
test:
|
|
$(emacs) -batch --script boon-test.el
|
|
|
|
clean:
|
|
rm -f *.elc
|
|
|
|
.PHONY: all clean test
|
|
|