comparison Makefile.gen @ 105:d5d27f262227

Beging merging of dmsimple2-fork into the main "engine".
author Matti Hamalainen <ccr@tnsp.org>
date Wed, 03 Oct 2012 09:16:26 +0300
parents 0430f484641b
children d5cfd29c87c4
comparison
equal deleted inserted replaced
104:7160c1d71ade 105:d5d27f262227
25 endif 25 endif
26 26
27 # Enable SIMD routines, if requested 27 # Enable SIMD routines, if requested
28 ifeq ($(DM_USE_SIMD),yes) 28 ifeq ($(DM_USE_SIMD),yes)
29 DM_CFLAGS+=-DDM_USE_SIMD 29 DM_CFLAGS+=-DDM_USE_SIMD
30 endif
31
32 # Enable Tremor Ogg Vorbis decoder
33 ifeq ($(DM_USE_TREMOR),yes)
34 DM_CFLAGS+=-DDM_USE_TREMOR $(TREMOR_CFLAGS)
35 DM_LDFLAGS+=$(TREMOR_LDFLAGS)
30 endif 36 endif
31 37
32 38
33 ### 39 ###
34 ### Filesystem 40 ### Filesystem
101 107
102 ### 108 ###
103 ### miniJSS 109 ### miniJSS
104 ### 110 ###
105 ifeq ($(JSS),yes) 111 ifeq ($(JSS),yes)
112 DM_CFLAGS+=-DDM_USE_JSS
106 113
107 ifeq ($(JSS_LIGHT),yes) 114 ifeq ($(JSS_LIGHT),yes)
108 DM_CFLAGS+=-DJSS_LIGHT -Os 115 DM_CFLAGS+=-DJSS_LIGHT -Os
109 else 116 else
110 ifeq ($(JSS_USE_ASSERTS),yes) 117 ifeq ($(JSS_USE_ASSERTS),yes)