c36aa18c67
Nuevas skills para crear TUIs, inicializar frontends React y módulos Go. Incluye binario parallel-executor y utilidades de soporte. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
32 lines
632 B
Makefile
32 lines
632 B
Makefile
.PHONY: build test clean install
|
|
|
|
BIN := parallel-executor
|
|
BUILD_DIR := ../../bin
|
|
|
|
## build: Compila el binario
|
|
build:
|
|
@mkdir -p $(BUILD_DIR)
|
|
go build -trimpath -ldflags="-s -w" -o $(BUILD_DIR)/$(BIN) .
|
|
@echo "✓ Built $(BUILD_DIR)/$(BIN)"
|
|
|
|
## test: Ejecuta tests
|
|
test:
|
|
go test ./core/... -v
|
|
|
|
## clean: Elimina artefactos
|
|
clean:
|
|
rm -f $(BUILD_DIR)/$(BIN)
|
|
|
|
## install: Copia binario a la skill
|
|
install: build
|
|
@echo "✓ Binary at $(BUILD_DIR)/$(BIN)"
|
|
@echo " Use: $(BUILD_DIR)/$(BIN) --help"
|
|
|
|
## tidy: go mod tidy
|
|
tidy:
|
|
go mod tidy
|
|
|
|
## help: Muestra ayuda
|
|
help:
|
|
@grep -E '^## ' Makefile | sed 's/## //' | column -t -s ':'
|