# # CQL Minus - cqlminus # # This file is licensed under the Affero General Public License version 3 or # later. See the COPYING file. # # @author Paolo Lulli # @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