This commit is contained in:
naudachu
2026-01-28 16:24:21 +05:00
commit e10b389661
38 changed files with 5909 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
.PHONY: build test clean install
build:
@echo "Building aevs..."
@mkdir -p bin
@go build -o bin/aevs ./cmd/aevs
@echo "✓ Built bin/aevs"
test:
@echo "Running tests..."
@go test ./...
clean:
@echo "Cleaning..."
@rm -rf bin/
@echo "✓ Cleaned"
install: build
@echo "Installing aevs..."
@cp bin/aevs /usr/local/bin/aevs
@echo "✓ Installed to /usr/local/bin/aevs"