aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorFranklin Wei <frankhwei536@gmail.com>2014-07-13 19:54:47 -0400
committerFranklin Wei <frankhwei536@gmail.com>2014-07-13 19:54:47 -0400
commit79bd2194539aa559078de9afb1500a2e754ee501 (patch)
treed4f1bd4fec8d118ad2ea95632597d60ef094029f /Makefile
parenta46ef7c627eb6ee71f195d95c3e18a9c4e04a85c (diff)
downloadwargames-server-79bd2194539aa559078de9afb1500a2e754ee501.zip
wargames-server-79bd2194539aa559078de9afb1500a2e754ee501.tar.gz
wargames-server-79bd2194539aa559078de9afb1500a2e754ee501.tar.bz2
wargames-server-79bd2194539aa559078de9afb1500a2e754ee501.tar.xz
Added server
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 2 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 76e6fb5..c24d8a6 100644
--- a/Makefile
+++ b/Makefile
@@ -1,9 +1,8 @@
-SOURCES=joshua.o main.o util.o chatbot.o gtnw.o strings.o
+SOURCES=joshua.o server.o util.o chatbot.o gtnw.o strings.o
HEADERS=chatbot.h gtnw.h joshua.h location.h strings.h map.h util.h
-CXXFLAGS=-lncurses -g -O3
CFLAGS=-std=gnu99 -g -O3
wargames: $(SOURCES) $(HEADERS)
- g++ $(SOURCES) $(CXXFLAGS) -lncurses -o wargames
+ g++ $(SOURCES) $(CXXFLAGS) -o wargames
all: wargames Makefile
clean:
rm -f $(SOURCES) a.out wargames *~