Add build scripts and main.c

This commit is contained in:
2024-12-28 23:54:27 +00:00
parent e2ebc9139b
commit 7e7d75ead0
5 changed files with 99 additions and 0 deletions

9
compile Executable file
View File

@@ -0,0 +1,9 @@
#!/bin/bash
CC=clang
CFLAGS="-g -Wall"
CXXFLAGS="-g -Wall"
SRC="src/*.c"
OUT=main
(set -x ; $CC $CFLAGS $SRC -o $OUT)