.PHONY: aeronmd
aeronmd:
sudo rm -rf /dev/shm/aeron-default/
docker run --rm --ipc=host -u $(shell id -u ${USER}):$(shell id -g ${USER}) neomantra/aeron-cpp-debian:latest
.PHONY: build
build:
cargo build --all-features
.PHONY: help
help:
@grep -E '^[a-zA-Z0-9 -\.]+:.*#' Makefile | while read -r l; do printf "\033[1;32m$$(echo $$l | cut -f 1 -d':')\033[00m:$$(echo $$l | cut -f 2- -d'#')\n"; done | sort
.PHONY: test
test:
cargo test --all-features