From b671408ce3b86491d7e0bcad865aec8d295fbf2b Mon Sep 17 00:00:00 2001 From: Thiago Auler Date: Mon, 20 Nov 2017 12:40:38 -0200 Subject: [PATCH] -lcurses --- build.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sh b/build.sh index 6086375..572a774 100755 --- a/build.sh +++ b/build.sh @@ -9,7 +9,7 @@ rm -f $EXEC_NAME # build all source code for FILE in $SRC_FOLDER/*.c do - cc -g -c $FILE + cc -g -c $FILE -lcurses done # move all objects to appropriate folder @@ -17,4 +17,4 @@ mkdir -p $OBJ_FOLDER mv *.o $OBJ_FOLDER # create executable out of the objects -cc -g -o $EXEC_NAME $OBJ_FOLDER/*.o +cc -g -o $EXEC_NAME $OBJ_FOLDER/*.o -lcurses