Changeset c51da03 in network-game for client/makefile


Ignore:
Timestamp:
Jan 26, 2014, 9:46:43 PM (11 years ago)
Author:
dportnoy <dmp1488@…>
Branches:
master
Children:
c991530
Parents:
5c7f28d (diff), 1e250bf (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge branch 'master' of github.com:weretaco/network-game

File:
1 edited

Legend:

Unmodified
Added
Removed
  • client/makefile

    r5c7f28d rc51da03  
    11CC = g++
    22LIB_FLAGS = `pkg-config --cflags --libs --static allegro-static-5.0 allegro_ttf-static-5.0 allegro_primitives-static-5.0`
    3 FLAGS = $(LIB_FLAGS)
     3FLAGS = -Wall
    44COMMON_PATH = ../common
    55DEPENDENCIES = Common.o MessageContainer.o MessageProcessor.o Player.o WorldMap.o Projectile.o Game.o GameRender.o GameSummary.o chat.o GuiComponent.o Window.o Textbox.o Button.o RadioButtonList.o TextLabel.o
    66
    77gameClient : Client/main.cpp $(DEPENDENCIES)
    8         $(CC) -o $@ $+ $(FLAGS)
     8        $(CC) -o $@ $+ $(FLAGS) $(LIB_FLAGS)
     9
     10%.o : Client/%.cpp
     11        $(CC) -c -o $@ $? $(FLAGS)
    912
    1013Common.o : $(COMMON_PATH)/Common.cpp
     
    3235        $(CC) -c -o $@ $? $(FLAGS)
    3336
    34 %.o : Client/%.cpp
    35         $(CC) -c -o $@ $? $(FLAGS)
    36 
    3737clean:
    3838        rm *.o
Note: See TracChangeset for help on using the changeset viewer.