This repository has been archived on 2026-01-06. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
fej/Makefile
2021-03-05 20:06:17 +01:00

16 lines
146 B
Makefile

all: debug
.PHONY: all
# Builds
debug:
@ cargo build
.PHONY: debug
release:
@ cargo build --release
.PHONY: release
# Run
run:
@ cargo run