forked from nakidai/csnake
1
0
Fork 0
configure
Nakidai 2023-10-30 03:27:47 +03:00
parent 9529eebcbc
commit f2e33ad320
Signed by untrusted user who does not match committer: nakidai
GPG Key ID: 914675D395210A97
1 changed files with 13 additions and 0 deletions

13
configure vendored
View File

@ -1,5 +1,18 @@
#!/bin/sh #!/bin/sh
if [[ "$*" == *"--help"* ]] || [[ "$*" == *"-h"* ]]
then
echo "Use environment variables to pass values:
CC - compiler (default: cc)
CFLAGS - flags for compiler
LDFLAGS - flags for linker
OUT - out file (default: game
SIZE - size of game field
DEFX - start x
DEFY - start y"
exit 1
fi
CC=${CC:-cc} CC=${CC:-cc}
RM=${RM:-rm -f} RM=${RM:-rm -f}
CFLAGS=${CFLAGS:-} CFLAGS=${CFLAGS:-}