1
0
mirror of https://github.com/mrusme/neonmodem.git synced 2024-06-16 06:25:23 +00:00
neonmodem/Makefile

14 lines
295 B
Makefile
Raw Normal View History

2022-12-29 19:32:57 +00:00
.PHONY: build install-deps install-deps-go
VERSION := $(shell git describe --tags 2> /dev/null || git rev-parse --short HEAD)
all: install-deps build
build:
2023-01-07 00:46:41 +00:00
go build -ldflags "-X github.com/mrusme/neonmodem/config.VERSION=$(VERSION)"
2022-12-29 19:32:57 +00:00
install-deps: install-deps-go
install-deps-go:
go get