Changeset edfd1d0 in network-game for server/makefile
- Timestamp:
- Dec 25, 2012, 6:27:14 PM (12 years ago)
- Branches:
- master
- Children:
- 4c202e0
- Parents:
- baaf6c8
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
server/makefile
rbaaf6c8 redfd1d0 3 3 FLAGS = $(LIB_FLAGS) 4 4 COMMON_PATH = ../common 5 DEPENDENCIES = Message.o Player.o DataAccess.o5 DEPENDENCIES = Common.o Message.o Player.o DataAccess.o 6 6 7 7 server : server.cpp $(DEPENDENCIES) 8 8 $(CC) -o $@ $+ $(FLAGS) 9 9 10 Common.o : $(COMMON_PATH)/Common.cpp 11 $(CC) -c -o $@ $? 12 10 13 Message.o : $(COMMON_PATH)/Message.cpp 14 $(CC) -c -o $@ $? 15 16 Player.o : $(COMMON_PATH)/Player.cpp 11 17 $(CC) -c -o $@ $? 12 18
Note:
See TracChangeset
for help on using the changeset viewer.