summaryrefslogtreecommitdiff
path: root/makeclient.sh
diff options
context:
space:
mode:
authorAaron Marks <nymacro@gmail.com>2005-07-13 02:59:19 +0000
committerAaron Marks <nymacro@gmail.com>2005-07-13 02:59:19 +0000
commitb426d3e5d269007f95360e40f906c5568a5abc99 (patch)
tree0dd6a4ad8ed1db374b74b6ea01d0eacb7dd50abb /makeclient.sh
parent960f631a2be601357424f9e6c5cdc64b68bff856 (diff)
downloadmanaserv-b426d3e5d269007f95360e40f906c5568a5abc99.tar.gz
manaserv-b426d3e5d269007f95360e40f906c5568a5abc99.tar.bz2
manaserv-b426d3e5d269007f95360e40f906c5568a5abc99.tar.xz
manaserv-b426d3e5d269007f95360e40f906c5568a5abc99.zip
Implemented MessageOut.
Rewrote MessageIn::readString - it was overly complex and didn't operate correctly. Update test client so it sends a login message.
Diffstat (limited to 'makeclient.sh')
-rwxr-xr-xmakeclient.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/makeclient.sh b/makeclient.sh
index 7b5b9e21..72c4f50f 100755
--- a/makeclient.sh
+++ b/makeclient.sh
@@ -1,2 +1,4 @@
#!/bin/bash
-g++ -I/usr/include/SDL -D_REENTRANT -o client src/client.cpp -L/usr/lib -lSDL_net -lSDL -lpthread
+g++ -I/usr/include/SDL -D_REENTRANT -o client \
+ src/client.cpp src/messageout.cpp src/packet.cpp \
+ -L/usr/lib -lSDL_net -lSDL -lpthread