Skip to content

Commit 8f17736

Browse files
p4v4nbbatsov
authored andcommittedFeb 13, 2024
Add Makefile
1 parent 33eda84 commit 8f17736

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed
 

‎Makefile

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
.PHONY: clean compile lint test all
2+
.DEFAULT_GOAL := all
3+
4+
clean:
5+
eldev clean
6+
7+
lint: clean
8+
eldev lint -c
9+
10+
# Checks for byte-compilation warnings.
11+
compile: clean
12+
eldev -dtT compile --warnings-as-errors
13+
14+
test: clean
15+
eldev -dtT -p test
16+
17+
all: clean compile lint test

0 commit comments

Comments
 (0)
Please sign in to comment.