Remove building test.c from the Posix compilation script

This commit is contained in:
Abdelrahman Said 2024-06-09 22:30:46 +01:00
parent aa28dd481b
commit 3c4112d080

View File

@ -64,8 +64,3 @@ fi
# Compile library # Compile library
(set -x ; $CC $CFLAGS $LIBFLAGS $INCLUDE $SRC -o $OUT) (set -x ; $CC $CFLAGS $LIBFLAGS $INCLUDE $SRC -o $OUT)
# Compile test.c if it exists
if [[ -f ./test.c ]]; then
(set -x ; $CC $CFLAGS $INCLUDE $SRC ./test.c -o test)
fi