summaryrefslogtreecommitdiff
path: root/Makefile
blob: 24c4d02fe1e51788a4ae41cbb788b5220799716a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
CARGO ?= cargo

.PHONY: all build run clean fmt check install

all: build

build:
	$(CARGO) build

run:
	$(CARGO) run -- $(ARGS)

clean:
	$(CARGO) clean

fmt:
	$(CARGO) fmt

check:
	$(CARGO) check

install:
	mv target/debug/suicidekit /usr/local/bin/suicidekit