mirror of
https://github.com/Zenithsiz/poke-rs.git
synced 2026-02-04 02:08:44 +00:00
14 lines
183 B
Makefile
14 lines
183 B
Makefile
CARGO := cargo
|
|
|
|
OBJS := $(wildcard src/*.rs)
|
|
|
|
.PHONY: all clean
|
|
|
|
all: target/release/poke-parser
|
|
|
|
target/release/poke-parser: $(OBJS)
|
|
@$(CARGO) build --release
|
|
|
|
clean:
|
|
$(RM) target
|