Changeset 1e250bf in network-game for client/makefile
- Timestamp:
- Jan 26, 2014, 12:02:49 AM (11 years ago)
- Branches:
- master
- Children:
- c51da03
- Parents:
- 9ee50ce
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
client/makefile
r9ee50ce r1e250bf 1 1 CC = g++ 2 2 LIB_FLAGS = `pkg-config --cflags --libs --static allegro-static-5.0 allegro_ttf-static-5.0 allegro_primitives-static-5.0` 3 FLAGS = $(LIB_FLAGS)3 FLAGS = -Wall 4 4 COMMON_PATH = ../common 5 5 DEPENDENCIES = 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 6 6 7 7 gameClient : Client/main.cpp $(DEPENDENCIES) 8 $(CC) -o $@ $+ $(FLAGS) 8 $(CC) -o $@ $+ $(FLAGS) $(LIB_FLAGS) 9 10 %.o : Client/%.cpp 11 $(CC) -c -o $@ $? $(FLAGS) 9 12 10 13 Common.o : $(COMMON_PATH)/Common.cpp … … 32 35 $(CC) -c -o $@ $? $(FLAGS) 33 36 34 %.o : Client/%.cpp35 $(CC) -c -o $@ $? $(FLAGS)36 37 37 clean: 38 38 rm *.o
Note:
See TracChangeset
for help on using the changeset viewer.