diff options
author | pryazha <pryadeiniv@mail.ru> | 2025-02-20 15:08:47 +0500 |
---|---|---|
committer | pryazha <pryadeiniv@mail.ru> | 2025-02-20 15:08:47 +0500 |
commit | 0bd7c5dc0725a4882cb33c5d8f1a3b101d4025cd (patch) | |
tree | ecb3e42bf4855ba9e4836a20b94cb4857943eda6 /example/build.sh |
initial
Diffstat (limited to 'example/build.sh')
-rwxr-xr-x | example/build.sh | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/example/build.sh b/example/build.sh new file mode 100755 index 0000000..172aa69 --- /dev/null +++ b/example/build.sh @@ -0,0 +1,7 @@ +#!/bin/sh +CFLAGS='-g -Wall' +INCLUDE='-I..' +LIBS='-lm' +set -x +#tcc $CFLAGS $INCLUDE $LIBS -o example example.c && ./example +gcc $CFLAGS $INCLUDE $LIBS -o example example.c && ./example |