#!/bin/bash

rm *.o
gcc -g -Wall -c extern_globals.c
gcc -g -Wall -c movement.c
gcc -g -Wall -c posix_sockets.c
gcc -g -Wall -lm -lopengl -c opengl.c
gcc -g -Wall -lpthread -lglut extern_globals.o posix_sockets.o movement.o opengl.o test.c -o societychess
