blob: b5293d98d1f9bd77ddd189e3771699666775a626 (
plain)
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
|
#
# Example Makefile.fpc which shows the defaults
#
[targets]
; The units which should be compiled
units=
; The programs which should be compiled
programs=
[defaults]
; the default build target should only compile the units ?
defaultunits=0
; What is the default rule to call
defaultrule=all
; force target OS
defaulttarget=
; force target CPU
defaultcpu=
; options needed to compile (like -S2 or -Sg)
defaultoptions=
[dirs]
; what is the default location of FPC
fpcdir=
; which dirs need to be searched for units
unitdir=
; which dirs need to be searched for libs
libdir=
; which dirs need to be searched for object files
objdir=
; which dirs need to be searched for include files
incdir=
; where to place the created units/files
targetdir=
; where to place the created units
unittargetdir=
[libs]
; linking with libgcc.a needed ?
libgcc=0
; linking with other libraries needed (not in the /lib;/usr/lib;/usr/X11R6/lib)
libother=0
[tools]
; sed needed?
toolsed=0
; cmp needed?
toolcmp=0
; diff needed?
tooldiff=0
; try to use upx for compression ?
toolupx=1
; date needed?
tooldate=1
; zip needed?
toolzip=1
[info]
; show configuration info
infocfg=1
; show directory info
infodir=0
; show which tools are found
infotools=0
; show install dirs
infoinstall=1
; show build objects
infoobjects=1
; show files found in current dir
infofiles=0
[presettings]
; Add here the makefile commands which need to be done at the beginning
; of the user settings section
[postsettings]
; Add here the makefile commands which need to be done at the end
; of the user settings section
[rules]
; here you can add your own rules, the general rules will automatically
; remove the defaults which call fpc_<rule>.
|