summaryrefslogtreecommitdiff
path: root/Makefile
blob: 3e6135387e6d6e0c1f5c112843793cbf9503592b (plain)
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