Rename output name in compile script

This commit is contained in:
Abdelrahman Said 2024-03-24 07:20:50 +00:00
parent 7bfaf53d4e
commit 04e86d355d

View File

@ -13,6 +13,6 @@ SRC="\
mem/src/*/*.c \
"
CFLAGS="-shared -fPIC -Wall -Werror -pedantic"
OUT="libwizapp.so"
OUT="libwapp.so"
(set -x ; $CC $CFLAGS $INCLUDE $SRC -o $OUT)