Merge pull request #4011 from fritsch/vdpau-settings
[vuplus_xbmc] / lib / libsquish / config
1 # config file used for the Makefile only
2
3 # define to 1 to use Altivec instructions
4 USE_ALTIVEC ?= 0
5
6 # define to 1 to use SSE2 instructions
7 USE_SSE ?= 0
8
9 # default flags
10 CXXFLAGS ?= -O2
11 ifeq ($(USE_ALTIVEC),1)
12 CPPFLAGS += -DSQUISH_USE_ALTIVEC=1
13 CXXFLAGS += -maltivec
14 endif
15 ifeq ($(USE_SSE),1)
16 CPPFLAGS += -DSQUISH_USE_SSE=2
17 CXXFLAGS += -msse
18 endif
19
20 # where should we install to
21 INSTALL_DIR ?= /usr/local