Add a top-level Makefile.

This is primarily to automate launching jaeger in docker for easier viewing of traces.
This commit is contained in:
Tom Alexander 2023-03-25 10:07:47 -04:00
parent f2d16d302a
commit a6cf1adf4b
Signed by: talexander
GPG Key ID: D3A179C9A53C0EDE
1 changed files with 25 additions and 0 deletions

25
Makefile Normal file
View File

@ -0,0 +1,25 @@
SHELL := bash
.ONESHELL:
.SHELLFLAGS := -eu -o pipefail -c
.DELETE_ON_ERROR:
MAKEFLAGS += --warn-undefined-variables
MAKEFLAGS += --no-builtin-rules
ifeq ($(origin .RECIPEPREFIX), undefined)
$(error This Make does not support .RECIPEPREFIX. Please use GNU Make 4.0 or later)
endif
.RECIPEPREFIX = >
.PHONY: build
build: target/debug/toy
.PHONY: clean
clean:
> cargo clean
target/debug/toy:
> cargo build
.PHONY: jaeger
jaeger:
> docker run -d --rm -p 6831:6831/udp -p 6832:6832/udp -p 16686:16686 -p 14268:14268 jaegertracing/all-in-one:latest