Changeset e708305 in network-game
- Timestamp:
- Jun 28, 2014, 2:11:57 AM (11 years ago)
- Branches:
- master
- Children:
- a0ce8a3
- Parents:
- 3ea1839
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
client/makefile
r3ea1839 re708305 1 1 CC = g++ 2 #LIB_FLAGS = `pkg-config --cflags --libs --static allegro-static-5.0 allegro_main-static-5.0 allegro_ttf-static-5.0 allegro_primitives-static-5.0` 2 FLAGS = -Wall -g 3 4 UNAME_S := $(shell uname -s) 5 6 LIB_FLAGS = `pkg-config --cflags --libs --static allegro-static-5.0 allegro_main-static-5.0 allegro_ttf-static-5.0 allegro_primitives-static-5.0` 7 3 8 # osx needs to link against some extra libraries 4 LIB_FLAGS = `pkg-config --cflags --libs --static allegro-static-5.0 allegro_main-static-5.0 allegro_ttf-static-5.0 allegro_primitives-static-5.0` -framework AppKit -framework IOKit -framework OpenGL -framework AGL -framework OpenAL 5 FLAGS = -Wall -g 9 ifeq ($(UNAME_S),Darwin) 10 LIB_FLAGS += -framework AppKit -framework IOKit -framework OpenGL -framework AGL -framework OpenAL 11 endif 12 6 13 COMMON_PATH = ../common 7 14 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
Note:
See TracChangeset
for help on using the changeset viewer.