From 04e86d355debccb9d41e3bf4c5aabbed63369053 Mon Sep 17 00:00:00 2001 From: Abdelrahman Said Date: Sun, 24 Mar 2024 07:20:50 +0000 Subject: [PATCH] Rename output name in compile script --- compile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compile b/compile index b90ce89..477b85e 100755 --- a/compile +++ b/compile @@ -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)