Changeset eab83af in network-game


Ignore:
Timestamp:
Jul 23, 2013, 3:10:09 AM (11 years ago)
Author:
Dmitry Portnoy <dmp1488@…>
Branches:
master
Children:
411c1ae
Parents:
dee75cc
Message:

Client makefile update

File:
1 edited

Legend:

Unmodified
Added
Removed
  • client/makefile

    rdee75cc reab83af  
    33FLAGS = $(LIB_FLAGS)
    44COMMON_PATH = ../common
    5 DEPENDENCIES = Common.o Message.o Player.o chat.o GuiComponent.o Window.o Textbox.o Button.o
     5DEPENDENCIES = Common.o MessageProcessor.o Player.o WorldMap.o Projectile.o chat.o GuiComponent.o Window.o Textbox.o Button.o RadioButtonList.o TextLabel.o
    66
    77gameClient : Client/main.cpp $(DEPENDENCIES)
     
    1111        $(CC) -c -o $@ $? $(FLAGS)
    1212
    13 Message.o : $(COMMON_PATH)/Message.cpp
     13MessageProcessor.o : $(COMMON_PATH)/MessageProcessor.cpp
    1414        $(CC) -c -o $@ $? $(FLAGS)
    1515
    1616Player.o : $(COMMON_PATH)/Player.cpp
     17        $(CC) -c -o $@ $? $(FLAGS)
     18
     19WorldMap.o : $(COMMON_PATH)/WorldMap.cpp
     20        $(CC) -c -o $@ $? $(FLAGS)
     21
     22Projectile.o : $(COMMON_PATH)/Projectile.cpp
    1723        $(CC) -c -o $@ $? $(FLAGS)
    1824
Note: See TracChangeset for help on using the changeset viewer.