-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig_def.mk
More file actions
108 lines (76 loc) · 2.96 KB
/
config_def.mk
File metadata and controls
108 lines (76 loc) · 2.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
##############################################################################
#
# Makefile default configuration
#
##############################################################################
##############################################################################
# Library configuration
##############################################################################
# Select library modules (folder _lib)
# If you add a new flag, add the update flag to _lib\_makefile.inc.
# 1=use BIT integers, 0=not used (_lib/bigint/*)
USE_BIGINT=0
# 1=use Calendar 32-bit (year range 1970..2099), 0=not used (lib_calendar.*)
USE_CALENDAR=0
# 1=use Calendar 64-bit (year range -29227..+29227), 0=not used (lib_calendar64.*)
USE_CALENDAR64=0
# 1=use CRC Cyclic Redundancy Check, 0=not used (lib_crc.*)
USE_CRC=0
# 1=use Decode integer number, 0=not used (lib_decnum.*)
USE_DECNUM=1
# 1=use Drawing library, 0=not used (lib_draw.*)
USE_DRAW=1
# 1=use FAT file system, 0=not used (lib_fat.*)
USE_FAT=1
# 1=use JPG support, 0=not used (_lib/pic/lib_jpg*)
USE_JPG=0
# 1=use Doubly Linked List, 0=not used (lib_list.*)
USE_LIST=1
# 1=use memory allocator, 0=not used (lib_malloc.*)
USE_MALLOC=1
# 1=use 2D transformation matrix (lib_mat2d.*)
USE_MAT2D=0
# 1=use MP3 decoder, 0=not used (mp3/lib_mp3.*)
USE_MP3=0
# 1=use PNG support, 0=not used (_lib/pic/lib_png*)
USE_PNG=0
# 1=use Formatted print, 0=not used (lib_print.*)
USE_PRINT=1
# 1=use PWM sound output, 0=not used (lib_pwmsnd.*)
USE_PWMSND=1
# 1=use Random number generator, 0=not used (lib_rand.*)
USE_RAND=1
# 1=use REAL numbers, 0=not used (_lib/real/*)
USE_REAL=0
# 1=use Data stream, 0=not used (lib_stream.*)
USE_STREAM=1
# 1=use text "string", 0=not used (lib_text*)
USE_TEXT=0
# 1=use Tree list, 0=not used (lib_tree.*)
USE_TREE=1
##############################################################################
# Font configuration
##############################################################################
# Select fonts (folder _font)
# If you add a new flag, add the update flag to _font\_makefile.inc.
# 1=include all fixed fonts, 0=include only default font FontBold8x16
USE_FONTFIX=1
# 1=use support of proportional fonts, 0=not used
USE_FONTPROP=0
# 1=include Arial fonts, 0=include only default font FontARB10
USE_FONTPROP_ARIAL=1
# 1=include Garamond fonts, 0=not included
USE_FONTPROP_GARAMOND=1
# 1=include Lucida Grande fonts, 0=not included
USE_FONTPROP_LUCIDA=1
# 1=include Sabon fonts, 0=not included
USE_FONTPROP_SABON=1
# 1=include Tahoma fonts, 0=not included
USE_FONTPROP_TAHOMA=1
# 1=include mixed fonts, 0=not included
USE_FONTPROP_MIXED=1
##############################################################################
# SDK configuration
##############################################################################
# Select SDK modules (foldes _sdk)
# If you add a new flag, add the update flag to _sdk\_makefile.inc.