Changes in client/makefile [1e250bf:8aed9c0] in network-game


Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • client/makefile

    r1e250bf r8aed9c0  
    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 = -Wall
     3FLAGS = $(LIB_FLAGS)
    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) $(LIB_FLAGS)
    9 
    10 %.o : Client/%.cpp
    11         $(CC) -c -o $@ $? $(FLAGS)
     8        $(CC) -o $@ $+ $(FLAGS)
    129
    1310Common.o : $(COMMON_PATH)/Common.cpp
     
    3532        $(CC) -c -o $@ $? $(FLAGS)
    3633
     34%.o : Client/%.cpp
     35        $(CC) -c -o $@ $? $(FLAGS)
     36
    3737clean:
    3838        rm *.o
Note: See TracChangeset for help on using the changeset viewer.