Skip to content

Commit

Permalink
build: add task 'make clean' (#217)
Browse files Browse the repository at this point in the history
  • Loading branch information
emqplus authored Jun 24, 2020
1 parent 6b68a28 commit 2838ee5
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,9 @@ all: build
build:
$(stack) run build -- -l

clean:
$(stack) clean

run:
$(stack) build --fast && $(stack) exec -- $(exe_target)

Expand All @@ -38,4 +41,4 @@ docker:
pkg:build test install
make -C deploy/packages

.PHONY : build run install test repl docker pkg
.PHONY : build clean run install test repl docker pkg

0 comments on commit 2838ee5

Please sign in to comment.