From b49130bce75f768b8783c1ceb4263ffbcbee7ee3 Mon Sep 17 00:00:00 2001 From: Kyler Date: Wed, 26 Nov 2025 23:30:18 -0700 Subject: [PATCH] Clarified compiler instructions --- SLS_C/README.md | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/SLS_C/README.md b/SLS_C/README.md index cce7e88..a1f375c 100644 --- a/SLS_C/README.md +++ b/SLS_C/README.md @@ -1,10 +1,10 @@ - # SLS C +# SLS C This is the C implementation for the YREA SLS interpreter. -## Running +## Compiling, Running, and Testing -### Linux (UNIX) +### Linux (GCC) Build Project: `make build` Build and Run Project: `make run` @@ -12,7 +12,9 @@ Build and Run Tests: `make test` Interpreter binary location: `./bin/sls` -### Windows +### Windows (MSVC) + +Use a developer shell for all nmake commands. Build Project: `nmake /f Makefile.nmake build` Build and Run Project: `nmake /f Makefile.nmake run`