mirror of
https://github.com/mrusme/neonmodem.git
synced 2024-12-04 14:46:37 -05:00
14 lines
291 B
Makefile
14 lines
291 B
Makefile
|
.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:
|
||
|
go build -ldflags "-X github.com/mrusme/gobbs/config.VERSION=$(VERSION)"
|
||
|
|
||
|
install-deps: install-deps-go
|
||
|
|
||
|
install-deps-go:
|
||
|
go get
|
||
|
|