source: network-game/server/makefile@ eab83af

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

Remove the Message.h include from several files

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