Changeset 1e250bf in network-game for client/makefile


Ignore:
Timestamp:
Jan 26, 2014, 12:02:49 AM (11 years ago)
Author:
Dmitry Portnoy <dmp1488@…>
Branches:
master
Children:
c51da03
Parents:
9ee50ce
Message:

Client makefile is up-to-date and includes -Wall

File:
1 edited

Legend:

Unmodified
Added
Removed
  • client/makefile

    r9ee50ce r1e250bf  
    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.