-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathMakefile
More file actions
45 lines (31 loc) · 721 Bytes
/
Makefile
File metadata and controls
45 lines (31 loc) · 721 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# CargoMake by NeoSmart Technologies
# Written and maintained by Mahmoud Al-Qudsi <mqudsi@neosmart.net>
# Released under the MIT public license
# Obtain updates from https://github.com/neosmart/CargoMake
COLOR ?= auto # Valid COLOR options: {always, auto, never}
CARGO = cargo --color $(COLOR)
GDB = gdb
.PHONY: all bench build check clean debug doc install publish run test update
all: build
bench:
@$(CARGO) bench
build:
@$(CARGO) build
check:
@$(CARGO) check
clean:
@$(CARGO) clean
doc:
@$(CARGO) doc
install: build
@$(CARGO) install --path . --force
publish:
@$(CARGO) publish
run: build
@$(CARGO) run
test: build
@$(CARGO) test
update:
@$(CARGO) update
debug: build
@$(GDB) target/debug/tac