Add per-client Makefiles for: - r, julia, dart, nim, crystal - clojure, erlang, ocaml, fsharp, d, zig - fortran, cobol, groovy, prolog - scheme, tcl, raku, powershell All follow the 4-mode testing pattern with language-specific build tools and test runners. Also update JavaScript Makefile for async ES module support. Total: 37 language clients with Makefiles
32 lines
1.2 KiB
Makefile
32 lines
1.2 KiB
Makefile
# UN Groovy Client
|
|
|
|
.PHONY: test test-cli test-library test-integration test-functional clean help
|
|
|
|
ROOT_DIR := $(shell cd ../.. && pwd)
|
|
SYNC_DIR := sync
|
|
GREEN := \033[32m
|
|
YELLOW := \033[33m
|
|
NC := \033[0m
|
|
|
|
test: test-cli test-library test-integration test-functional
|
|
@echo "$(GREEN)✓ Groovy Client: All 4 test modes complete$(NC)"
|
|
|
|
test-cli:
|
|
@echo "━━━ CLI MODE ━━━"
|
|
@if [ -f "$(ROOT_DIR)/un.groovy" ]; then groovy --help 2>/dev/null && groovyc "$(ROOT_DIR)/un.groovy" -d /tmp 2>/dev/null && echo " $(GREEN)✓$(NC) Compiles" || echo " $(YELLOW)⊘$(NC) Check syntax"; fi
|
|
@if [ -f "$(SYNC_DIR)/build.gradle" ]; then cd $(SYNC_DIR) && gradle compileGroovy -q 2>/dev/null && echo " $(GREEN)✓$(NC) SDK compiles" || echo " $(YELLOW)⊘$(NC) Check gradle"; fi
|
|
|
|
test-library:
|
|
@echo "━━━ LIBRARY MODE ━━━"
|
|
@if [ -f "$(SYNC_DIR)/build.gradle" ]; then cd $(SYNC_DIR) && gradle test -q 2>/dev/null || echo " $(YELLOW)⊘$(NC) Tests incomplete"; fi
|
|
|
|
test-integration:
|
|
@echo "━━━ INTEGRATION MODE ━━━"
|
|
@echo " $(YELLOW)⊘$(NC) Not implemented"
|
|
|
|
test-functional:
|
|
@echo "━━━ FUNCTIONAL MODE ━━━"
|
|
@echo " $(YELLOW)⊘$(NC) Not implemented"
|
|
|
|
clean:
|
|
@rm -rf $(SYNC_DIR)/build 2>/dev/null; echo "$(GREEN)✓$(NC) Cleaned"
|