all repos — mn @ 2e36b444705603bda077fce3b5af84f7153bbb1a

A truly minimal concatenative programming language.

tasks/build.mn

 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
"tasks/pre.mn" read eval 

(
    (stage) let
    (target_os) let
    "mn_v$#_$#_x64" (cfg_version target_os) interpolate (o) let
    (target_os "windows" ==)
        ("$#.exe" (o) interpolate (o) bind)
    when
    "Building mn - $# (x64) - $#" (target_os stage) interpolate puts pop
    "nim c -d:$# --os:$# -o:$# mn" (stage target_os o) interpolate (cmd) let
    cmd puts pop
    cmd run
) (compile) lambda

#| Tasks |#

(
    os "release" compile
) (build__default) lambda

(
    os "dev" compile
) (build__dev) lambda

(
    "windows" "release" compile
) (build__windows) lambda

(
    "linux" "release" compile
) (build__linux) lambda

(
    "macosx" "release" compile
) (build__macosx) lambda