blob: 206bf7c276aa36ee37fbf0e0650e91f3d98bcfb5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# Copyright (c) 2023 Nicolas Paul All rights reserved.
# Use of this source code is governed by a BSD-style
# license that can be found in the LICENSE file.
BINARY := crocc
VERSION := $(shell git describe --tags --always --dirty)
DATE := $(shell date -u '+%FT%T%z')
LDFLAGS := -ldflags "-w -s -X main.version=$(VERSION) -X main.date=$(DATE)"
$(BINARY): *.go
go build $(LDFLAGS) -o $(BINARY)
clean:
rm -f $(BINARY)
.PHONY: clean
|