comparison config.mak.in @ 0:32250b436bca

Initial re-import.
author Matti Hamalainen <ccr@tnsp.org>
date Fri, 28 Sep 2012 01:54:23 +0300
parents
children 9a8355b47e1c
comparison
equal deleted inserted replaced
-1:000000000000 0:32250b436bca
1 # Build with runtime asserts?
2 DM_USE_ASSERTS=yes
3
4 # Use plain C routines?
5 DM_USE_C=yes
6
7 # Use MMX/SSE SIMD assembler routines?
8 DM_USE_SIMD=yes
9
10
11 DMRES_PACKFS=yes
12 DMRES_STDIO=yes
13 DMRES_MEMIO=yes
14
15
16 DM_GFX_TTF_TEXT=yes
17 DM_GFX_LINES=no
18 DM_GFX_BLITS=yes
19 DM_GFX_MISC=yes
20
21 DM_GFX_8BIT=yes
22 DM_GFX_32BIT=yes
23
24
25 ###
26 ### General build options for miniJSS
27 ###
28 JSS=yes
29
30 # Build a special "light"/minimized version by removing all
31 # error messages and few other things.
32 JSS_LIGHT=no
33
34 # Build with extra debugging code? (disabled by JSS_LIGHT=yes)
35 JSS_DEBUG=yes
36
37
38 ### Support loading of XM-format module files
39 JSS_SUP_XM=yes
40
41
42 ### Generic support of JSSMOD-format modules
43 JSS_SUP_JSSMOD=yes
44
45 # Enable support for different pattern storage modes
46 # in the JSSMOD _loader_. Saving in xm2jss is not affected.
47 JSSMOD_FLAGS = -DJM_SUP_PATMODE_ALL
48
49 # If SUP_PATMODE_ALL is not defined, then you can enable modes individually
50 # by uncommenting lines below. Refer to 'xm2jss --help' for mode information.
51 #JSSMOD_FLAGS += -DJM_SUP_PATMODE_1
52 #JSSMOD_FLAGS += -DJM_SUP_PATMODE_2
53 #JSSMOD_FLAGS += -DJM_SUP_PATMODE_3
54 #JSSMOD_FLAGS += -DJM_SUP_PATMODE_4
55 #JSSMOD_FLAGS += -DJM_SUP_PATMODE_5
56
57 # Enable ext. instrument, instrument header and sampledata loading:
58 # (if you disable these, you better know what you are doing.)
59 JSSMOD_FLAGS += -DJM_SUP_EXT_INSTR
60 JSSMOD_FLAGS += -DJM_SUP_INSTR
61 JSSMOD_FLAGS += -DJM_SUP_SAMPLES
62
63
64 ###
65 ### Locking/thread support
66 ###
67 JSS_SUP_THREADS=yes