Skip to content

Commit

Permalink
Add Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
p4v4n committed Feb 13, 2024
1 parent 10ecc80 commit b04d345
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,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

0 comments on commit b04d345

Please sign in to comment.