[Add] Profiling flag to makefile.

This commit is contained in:
Allanis 2013-02-14 21:24:38 +00:00
parent d0f599a853
commit 30e659c253

View File

@ -27,7 +27,7 @@ LDXML = `xml2-config --libs`
LDTTF = `freetype-config --libs` LDTTF = `freetype-config --libs`
LDGL = -lGL LDGL = -lGL
LDPNG = -lpng LDPNG = -lpng
LDFLAGS = -lm $(LDLUA) $(LDSDL) $(LDXML) $(LDTTF) $(LDGL) $(LDPNG) LDFLAGS = -lm -pg $(LDLUA) $(LDSDL) $(LDXML) $(LDTTF) $(LDGL) $(LDPNG)
DATA = data DATA = data
DATAFILES = $(shell find ../scripts/ ../gfx/ ../dat/ -name '*.lua' -o -name '*.png' -o -name '*.xml' -o -name '*.ttf') DATAFILES = $(shell find ../scripts/ ../gfx/ ../dat/ -name '*.lua' -o -name '*.png' -o -name '*.xml' -o -name '*.ttf')