Commit unzipped original NetworkedTicTacToeStarter folder

This commit is contained in:
2026-03-13 14:40:56 +00:00
parent 64af2ed168
commit 212119adac
50 changed files with 2359 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
SFML_PATH=/usr/local/Cellar/sfml/2.6.1/
CXXFLAGS= -std=c++14 -Wall -Wpedantic -I${SFML_PATH}include/
LDFLAGS=-L${SFML_PATH}lib/
CFLAGS=-g -lsfml-graphics -lsfml-window -lsfml-system -lsfml-network -pthread
CPPFLAGS=
LDLIBS=
LIBS=
CPP=g++
all: server
server: GameServer.o
$(CPP) $(CXXFLAGS) $(LDFLAGS) $(LIBS) $^ -o $@ $(CFLAGS)
clean:
\rm -f *.o server