From 3c4112d080d6406c5f70ec0f03aa265d8dff1f55 Mon Sep 17 00:00:00 2001
From: Abdelrahman Said <said.abdelrahman89@gmail.com>
Date: Sun, 9 Jun 2024 22:30:46 +0100
Subject: [PATCH] Remove building test.c from the Posix compilation script

---
 compile | 5 -----
 1 file changed, 5 deletions(-)

diff --git a/compile b/compile
index 22d5846..a980492 100755
--- a/compile
+++ b/compile
@@ -64,8 +64,3 @@ fi
 
 # Compile library
 (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