Changes in server/makefile [60017fc:edfd1d0] in network-game
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
server/makefile
r60017fc redfd1d0 1 1 CC = g++ 2 LIB_FLAGS = -lssl -lmysqlclient -lcrypt -lrt2 LIB_FLAGS = -lssl -lmysqlclient 3 3 FLAGS = $(LIB_FLAGS) 4 4 COMMON_PATH = ../common 5 DEPENDENCIES = Common.o Message.o Player.o WorldMap.oDataAccess.o5 DEPENDENCIES = Common.o Message.o Player.o DataAccess.o 6 6 7 7 server : server.cpp $(DEPENDENCIES) … … 17 17 $(CC) -c -o $@ $? 18 18 19 WorldMap.o : $(COMMON_PATH)/WorldMap.cpp20 $(CC) -c -o $@ $?21 22 19 %.o : %.cpp 23 20 $(CC) -c -o $@ $?
Note:
See TracChangeset
for help on using the changeset viewer.