1
- ;~ Siskin project seed file ~;
1
+ ;~ Siskin project nest file ~;
2
2
name: %Rebol
3
3
group: %rebol
4
4
compiler: clang
@@ -9,7 +9,7 @@ root: %../
9
9
source: %src/
10
10
include: %src/include/
11
11
temp: %make/tmp/
12
- output: %build/
12
+ ; output: %build/
13
13
14
14
stack-size: 4194300
15
15
optimize: 2
@@ -199,7 +199,7 @@ host-files-view: [
199
199
]
200
200
201
201
mezz-base-files: [
202
- ;-- base: low-level boot in lib context:
202
+ ;-- base: low-level boot in lib context:
203
203
%mezz/base-constants.reb
204
204
%mezz/base-funcs.reb
205
205
%mezz/base-series.reb
@@ -209,7 +209,7 @@ mezz-base-files: [
209
209
%mezz/base-collected.reb ; contains automatically collected code from C files
210
210
]
211
211
mezz-sys-files: [
212
- ;-- sys: low-level sys context:
212
+ ;-- sys: low-level sys context:
213
213
%mezz/sys-base.reb
214
214
%mezz/sys-ports.reb
215
215
%mezz/sys-codec.reb ; export to lib!
@@ -257,7 +257,7 @@ mezz-lib-files: [
257
257
; %mezz/codec-image-ext.reb ; image codec extensions (codecs/png/size?)
258
258
]
259
259
mezz-prot-files: [
260
- ;-- protocols:
260
+ ;-- protocols:
261
261
; %mezz/prot-http.reb
262
262
; %mezz/prot-tls.reb
263
263
; %mezz/prot-whois.reb
@@ -452,6 +452,7 @@ include-codec-xml: [mezz-lib-files: %mezz/codec-xml.reb ]
452
452
include-codec-swf: [mezz-lib-files: %mezz/codec-swf.reb ]
453
453
include-codec-wav: [mezz-lib-files: %mezz/codec-wav.reb ]
454
454
; mezzanines:
455
+ include-mezz-ansi: [mezz-lib-files: %mezz/mezz-ansi.reb ]
455
456
include-mezz-date: [mezz-lib-files: %mezz/mezz-date.reb ]
456
457
include-mezz-colors: [mezz-lib-files: %mezz/mezz-colors.reb ]
457
458
; protocols:
@@ -474,6 +475,7 @@ include-https: [
474
475
;- Product specifications
475
476
476
477
include-rebol-core: [
478
+ :include-mezz-ansi
477
479
:include-clipboard
478
480
:include-cryptography
479
481
:include-bincode
@@ -625,24 +627,24 @@ probe-spec: action ["Probe current spec structure"][
625
627
do [? spec]
626
628
]
627
629
pre-make: action [@pre "Pre-make headers and boot code"][
628
- do %make/pre-make.r3 "$TEMP_SEED_SPEC "
630
+ do %make/pre-make.r3 "$NEST_SPEC "
629
631
]
630
632
631
633
;-------------------------------------------------------------------------------
632
- ;- All possible compilation targets and commands
634
+ ;- All possible compilation targets (eggs) and commands
633
635
;-------------------------------------------------------------------------------
634
636
635
637
; target shortcuts..
636
638
make-exe: [
637
639
:common
638
640
:common-host
639
641
defines: [REB_EXE]
640
- do %make/pre-make.r3 "$TEMP_SEED_SPEC "
642
+ do %make/pre-make.r3 "$NEST_SPEC "
641
643
]
642
644
make-x86-exe: [:arch-x86 :make-exe #if Windows? [target: x86-win32]]
643
645
make-x64-exe: [:arch-x64 :make-exe #if Windows? [target: x64-win32]]
644
646
645
- targets : [
647
+ eggs : [
646
648
#if Windows? [
647
649
; "Pre-make (minimum included)" [
648
650
; pre-make
@@ -678,14 +680,14 @@ targets: [
678
680
compiler: gcc
679
681
:make-x64-exe
680
682
]
681
- "Rebol/Core x86 -win32 (gcc)" [
683
+ "Rebol/Core x64 -win32 (gcc)" [
682
684
name: %rebol3-core-x64-gcc
683
685
product: Core
684
686
compiler: gcc
685
687
:include-rebol-core
686
688
:make-x64-exe
687
689
]
688
- "Rebol/Bulk x86 -win32 (clang)" [
690
+ "Rebol/Bulk x64 -win32 (clang)" [
689
691
name: %rebol3-bulk-x64-clang
690
692
product: Bulk
691
693
compiler: clang
0 commit comments