Changeset 50643fa in network-game


Ignore:
Timestamp:
Oct 9, 2013, 1:50:14 PM (11 years ago)
Author:
Dmitry Portnoy <dmp1488@…>
Branches:
master
Children:
248e3c1
Parents:
53ba300
Message:

Updated the client makefile to work in ubuntu

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • client/makefile

    r53ba300 r50643fa  
    33FLAGS = $(LIB_FLAGS)
    44COMMON_PATH = ../common
    5 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
     5DEPENDENCIES = 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
    66
    77gameClient : Client/main.cpp $(DEPENDENCIES)
     
    99
    1010Common.o : $(COMMON_PATH)/Common.cpp
     11        $(CC) -c -o $@ $? $(FLAGS)
     12
     13MessageContainer.o : $(COMMON_PATH)/MessageContainer.cpp
    1114        $(CC) -c -o $@ $? $(FLAGS)
    1215
     
    2326        $(CC) -c -o $@ $? $(FLAGS)
    2427
     28Game.o : $(COMMON_PATH)/Game.cpp
     29        $(CC) -c -o $@ $? $(FLAGS)
     30
    2531%.o : Client/%.cpp
    2632        $(CC) -c -o $@ $? $(FLAGS)
  • readme.txt

    r53ba300 r50643fa  
    1 This info is outdated. The latest info is on the github wiki.
     1Building client on linux (tested in ubuntu)
     2
     3Build a static version of the allegro library
     4http://ventilatorxor.wordpress.com/2011/08/07/linux-allegro5-static-linking-for-beginners/
     5
     6The info below is outdated. The latest info is on the github wiki.
    27
    38BoostPro Installer options
Note: See TracChangeset for help on using the changeset viewer.