File: Makefile

package info (click to toggle)
clojure-mode 5.19.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid, trixie
  • size: 25,244 kB
  • sloc: lisp: 6,617; makefile: 17
file content (17 lines) | stat: -rw-r--r-- 267 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
.PHONY: clean compile lint test all
.DEFAULT_GOAL := all

clean:
	eldev clean

lint: clean
	eldev lint -c

# Checks for byte-compilation warnings.
compile: clean
	 eldev -dtT compile --warnings-as-errors

test: clean
	eldev -dtT -p test

all: clean compile lint test