File: compile

package info (click to toggle)
circe 2.14%2B34-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 848 kB
  • sloc: lisp: 9,808; sh: 40; makefile: 4
file content (10 lines) | stat: -rwxr-xr-x 243 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
#!/bin/sh

set -e
cd "$(dirname "$0")/.."

find . -name '*.elc' -delete
cask exec "${EMACS:-emacs}" -batch \
     -L . \
     --eval "(setq byte-compile-warnings '(not cl-functions))" \
     -f batch-byte-compile $(ls *.el|grep -v -- -pkg.el)