diff --git a/buxs/README.md b/buxs/README.md deleted file mode 100644 index a466450..0000000 --- a/buxs/README.md +++ /dev/null @@ -1,20 +0,0 @@ -# BUXS — Windows-Compatible Project Root - -This directory serves as an alternative project root for Windows environments -where the name `bux` may conflict with system paths or tooling. - -## Usage - -From this directory, you can build and run the Bux compiler using the -provided wrapper scripts. - -## Structure - -The actual project source lives in the parent directory (`../`): - -- `../compiler/bootstrap/` — Nim bootstrap compiler -- `../compiler/selfhost/` — Self-hosting compiler (Bux) -- `../library/std/` — Standard library modules -- `../library/runtime/` — C runtime files -- `../tests/` — Integration tests -- `../docs/` — Documentation diff --git a/buxs/build.bat b/buxs/build.bat deleted file mode 100644 index 32155d4..0000000 --- a/buxs/build.bat +++ /dev/null @@ -1,4 +0,0 @@ -@echo off -REM Windows wrapper to build Bux from buxs/ root -cd .. -make build diff --git a/buxs/build.sh b/buxs/build.sh deleted file mode 100755 index c2ee67b..0000000 --- a/buxs/build.sh +++ /dev/null @@ -1,4 +0,0 @@ -#!/bin/bash -# Wrapper script to build Bux from buxs/ root -cd .. -make build diff --git a/buxs/bux.toml b/buxs/bux.toml deleted file mode 100644 index 8eee9db..0000000 --- a/buxs/bux.toml +++ /dev/null @@ -1,7 +0,0 @@ -[Package] -Name = "buxc" -Version = "0.1.0" -Type = "bin" - -[Build] -Output = "Bin"