Changeset 50643fa in network-game for client/makefile
- Timestamp:
- Oct 9, 2013, 1:50:14 PM (11 years ago)
- Branches:
- master
- Children:
- 248e3c1
- Parents:
- 53ba300
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
client/makefile
r53ba300 r50643fa 3 3 FLAGS = $(LIB_FLAGS) 4 4 COMMON_PATH = ../common 5 DEPENDENCIES = Common.o Message Processor.o Player.o WorldMap.o Projectile.o chat.o GuiComponent.o Window.o Textbox.o Button.o RadioButtonList.o TextLabel.o5 DEPENDENCIES = Common.o MessageContainer.o MessageProcessor.o Player.o WorldMap.o Projectile.o Game.o GameRender.o chat.o GuiComponent.o Window.o Textbox.o Button.o RadioButtonList.o TextLabel.o 6 6 7 7 gameClient : Client/main.cpp $(DEPENDENCIES) … … 9 9 10 10 Common.o : $(COMMON_PATH)/Common.cpp 11 $(CC) -c -o $@ $? $(FLAGS) 12 13 MessageContainer.o : $(COMMON_PATH)/MessageContainer.cpp 11 14 $(CC) -c -o $@ $? $(FLAGS) 12 15 … … 23 26 $(CC) -c -o $@ $? $(FLAGS) 24 27 28 Game.o : $(COMMON_PATH)/Game.cpp 29 $(CC) -c -o $@ $? $(FLAGS) 30 25 31 %.o : Client/%.cpp 26 32 $(CC) -c -o $@ $? $(FLAGS)
Note:
See TracChangeset
for help on using the changeset viewer.