Init Commit.

This commit is contained in:
Creeper Lv
2026-05-26 03:56:30 +10:00
commit 7d974680a6
8 changed files with 278 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
#!/bin/sh
mkdir -p ./bin/
if [ -f "./env.sh" ];
then
source ./env.sh
fi
if [ -z "$CC" ];
then
CC=cc
fi
if [ -z "$SKIP_EXE" ];
then
COMMAND="$CC ./Source/*.c ./Source/cli/*.c ./Source/Languages/*/*.c -o ./bin/slex"
echo "$COMMAND"
$COMMAND
fi