Changeset 50643fa in network-game
- Timestamp:
- Oct 9, 2013, 1:50:14 PM (11 years ago)
- Branches:
- master
- Children:
- 248e3c1
- Parents:
- 53ba300
- Files:
-
- 2 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) -
readme.txt
r53ba300 r50643fa 1 This info is outdated. The latest info is on the github wiki. 1 Building client on linux (tested in ubuntu) 2 3 Build a static version of the allegro library 4 http://ventilatorxor.wordpress.com/2011/08/07/linux-allegro5-static-linking-for-beginners/ 5 6 The info below is outdated. The latest info is on the github wiki. 2 7 3 8 BoostPro Installer options
Note:
See TracChangeset
for help on using the changeset viewer.