source: network-game/server/makefile@ 90eaad2

Last change on this file since 90eaad2 was f419b09, checked in by dportnoy <dmp1488@…>, 11 years ago

Added a Game class and new messages types for creating, joining, and leaving games

  • Property mode set to 100644
File size: 782 bytes
Line 
1CC = g++
2LIB_FLAGS = -lssl -lmysqlclient -lcrypt -lrt
3FLAGS = $(LIB_FLAGS)
4COMMON_PATH = ../common
5DEPENDENCIES = Common.o MessageContainer.o MessageProcessor.o Player.o WorldMap.o DataAccess.o Projectile.o Game.o
6
7server : server.cpp $(DEPENDENCIES)
8 $(CC) -o $@ $+ $(FLAGS)
9
10Common.o : $(COMMON_PATH)/Common.cpp
11 $(CC) -c -o $@ $?
12
13MessageContainer.o : $(COMMON_PATH)/MessageContainer.cpp
14 $(CC) -c -o $@ $?
15
16MessageProcessor.o : $(COMMON_PATH)/MessageProcessor.cpp
17 $(CC) -c -o $@ $?
18
19Player.o : $(COMMON_PATH)/Player.cpp
20 $(CC) -c -o $@ $?
21
22WorldMap.o : $(COMMON_PATH)/WorldMap.cpp
23 $(CC) -c -o $@ $?
24
25Projectile.o : $(COMMON_PATH)/Projectile.cpp
26 $(CC) -c -o $@ $?
27
28Game.o : $(COMMON_PATH)/Game.cpp
29 $(CC) -c -o $@ $?
30
31%.o : %.cpp
32 $(CC) -c -o $@ $?
33
34clean:
35 rm *.o
36 rm server
Note: See TracBrowser for help on using the repository browser.