commit be68dd882c8b88c7e9a837733f71c3eec6efb45f from: Omar Polo date: Sat Dec 19 12:54:56 2020 UTC added makefile for byte compilation commit - 9a3b041a5a3c872956bd5c61c52ad5b29af8ea13 commit + be68dd882c8b88c7e9a837733f71c3eec6efb45f blob - /dev/null blob + c531d9867f6c223be1daf0f6da7538feb11966d8 (mode 644) --- /dev/null +++ .gitignore @@ -0,0 +1 @@ +*.elc blob - /dev/null blob + 36662a3561ea6f8a1be6264af59b609356826998 (mode 644) --- /dev/null +++ Makefile @@ -0,0 +1,8 @@ +EMACS = emacs + +.PHONY: all +all: sndio.elc + +.SUFFIXES: .el .elc +.el.elc: + ${EMACS} -Q --batch -L . -f batch-byte-compile $<