fej/Makefile

38 lines
374 B
Makefile
Raw Normal View History

2021-03-13 21:54:38 +01:00
IMAGE := rust-api:latest
2021-03-05 20:40:49 +01:00
shell := /bin/bash
2021-03-05 20:06:17 +01:00
all: debug
.PHONY: all
# Builds
debug:
@ cargo build
.PHONY: debug
release:
@ cargo build --release
.PHONY: release
2021-03-05 20:40:49 +01:00
image: Dockerfile
@ docker build -t '$(IMAGE)' .
2021-03-05 20:40:49 +01:00
.PHONY: image
2021-03-05 20:06:17 +01:00
# Run
run:
@ cargo run
2021-03-05 23:34:38 +01:00
.PHONY: run
2021-03-05 20:40:49 +01:00
2021-03-05 23:34:38 +01:00
# Testing
test:
@ cargo test
.PHONY: test
# Documentation
docs:
@ cargo doc --no-deps
.PHONY: docs