Files
bux-lang/Makefile
T
dimgigov 9f733aca7d feat: generic struct monomorphization + tkUnknown fix
- Add generic struct instantiation (Box<int>, Pair<T,U>) in HIR lowering
- Fix tkUnknown/tkNamed/tkTypeParam ambiguity in sema.nim (qualify with TypeKind)
- Add generics_struct example
- Update Makefile with new example
2026-05-31 10:33:08 +03:00

56 lines
1.6 KiB
Makefile

NIM := nim
SRC := src/main.nim
OUT := buxc
BUILD_DIR := build
EXAMPLES := hello fibonacci factorial structs enums methods algebraic_enums generics pattern_matching strings map result_option try_operator generics_struct
.PHONY: all build dev test clean test-examples
all: build
build:
$(NIM) c -o:$(OUT) -d:release $(SRC)
dev:
$(NIM) c -o:$(OUT) $(SRC)
test: build test-examples
@echo "Running lexer tests..."
$(NIM) c -r tests/lexer_test.nim
@echo "Running parser tests..."
$(NIM) c -r tests/parser_test.nim
@echo "Running sema tests..."
$(NIM) c -r tests/sema_test.nim
@echo "Running HIR tests..."
$(NIM) c -r tests/hir_test.nim
@echo "Running integration tests..."
rm -rf _test_tmp_pkg
./$(OUT) new _test_tmp_pkg
./$(OUT) --version
test-examples: build
@for ex in $(EXAMPLES); do \
echo "=== Testing example: $$ex ==="; \
mkdir -p examples_pkg/$$ex/src; \
cp examples/$$ex.bux examples_pkg/$$ex/src/Main.bux; \
if [ ! -f examples_pkg/$$ex/bux.toml ]; then \
echo '[Package]' > examples_pkg/$$ex/bux.toml; \
echo 'Name = "'$$ex'"' >> examples_pkg/$$ex/bux.toml; \
echo 'Version = "0.1.0"' >> examples_pkg/$$ex/bux.toml; \
echo 'Type = "bin"' >> examples_pkg/$$ex/bux.toml; \
echo '' >> examples_pkg/$$ex/bux.toml; \
echo '[Build]' >> examples_pkg/$$ex/bux.toml; \
echo 'Output = "Bin"' >> examples_pkg/$$ex/bux.toml; \
fi; \
(cd examples_pkg/$$ex && timeout 10 ../../$(OUT) run) || exit 1; \
done
@echo "All examples passed!"
clean:
rm -f $(OUT)
rm -rf $(BUILD_DIR)
rm -rf nimcache
rm -rf examples_pkg
rm -rf _test_tmp_pkg