Changeset eab83af in network-game
- Timestamp:
- Jul 23, 2013, 3:10:09 AM (11 years ago)
- Branches:
- master
- Children:
- 411c1ae
- Parents:
- dee75cc
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
client/makefile
rdee75cc reab83af 3 3 FLAGS = $(LIB_FLAGS) 4 4 COMMON_PATH = ../common 5 DEPENDENCIES = Common.o Message .o Player.o chat.o GuiComponent.o Window.o Textbox.o Button.o5 DEPENDENCIES = Common.o MessageProcessor.o Player.o WorldMap.o Projectile.o chat.o GuiComponent.o Window.o Textbox.o Button.o RadioButtonList.o TextLabel.o 6 6 7 7 gameClient : Client/main.cpp $(DEPENDENCIES) … … 11 11 $(CC) -c -o $@ $? $(FLAGS) 12 12 13 Message .o : $(COMMON_PATH)/Message.cpp13 MessageProcessor.o : $(COMMON_PATH)/MessageProcessor.cpp 14 14 $(CC) -c -o $@ $? $(FLAGS) 15 15 16 16 Player.o : $(COMMON_PATH)/Player.cpp 17 $(CC) -c -o $@ $? $(FLAGS) 18 19 WorldMap.o : $(COMMON_PATH)/WorldMap.cpp 20 $(CC) -c -o $@ $? $(FLAGS) 21 22 Projectile.o : $(COMMON_PATH)/Projectile.cpp 17 23 $(CC) -c -o $@ $? $(FLAGS) 18 24
Note:
See TracChangeset
for help on using the changeset viewer.