1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
#
# CQL Minus - cqlminus
#
# This file is licensed under the Affero General Public License version 3 or
# later. See the COPYING file.
#
# @author Paolo Lulli <kevwe.com>
# @copyright Paolo Lulli 2026
#
.PHONY: clean
BUILD_DIR:= ./build
build: clean
test -d $(BUILD_DIR) || mkdir -p $(BUILD_DIR) && (export CGO_ENABLED=0; go build -o $(BUILD_DIR)/cqlminus cmd/cqlminus/main.go)
clean:
rm -fr ./build ; go clean
|