Changeset ca44f82 in network-game for server/makefile
- Timestamp:
- Feb 24, 2013, 1:28:32 AM (12 years ago)
- Branches:
- master
- Children:
- 7b43385
- Parents:
- 3a79253 (diff), 8f85180 (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the(diff)
links above to see all the changes relative to each parent. - File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
server/makefile
r3a79253 rca44f82 1 1 CC = g++ 2 LIB_FLAGS = -lssl -lmysqlclient 2 LIB_FLAGS = -lssl -lmysqlclient -lcrypt -lrt 3 3 FLAGS = $(LIB_FLAGS) 4 4 COMMON_PATH = ../common 5 DEPENDENCIES = Common.o Message.o Player.o DataAccess.o5 DEPENDENCIES = Common.o Message.o Player.o WorldMap.o DataAccess.o 6 6 7 7 server : server.cpp $(DEPENDENCIES) … … 17 17 $(CC) -c -o $@ $? 18 18 19 WorldMap.o : $(COMMON_PATH)/WorldMap.cpp 20 $(CC) -c -o $@ $? 21 19 22 %.o : %.cpp 20 23 $(CC) -c -o $@ $?
Note:
See TracChangeset
for help on using the changeset viewer.