all repos — mn @ aed8a20e8a4350d6dbd66c9b3eef459a4b385207

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
 37
 38
"tasks/info.mn" read eval 

(
    (stage) let
    (target_os) let
    "mn_v$#_$#_x64" (cfg_version target_os) interpolate (o) let
    "" (ext) let
    (target_os "windows" ==)
        (".exe" (ext) bind)
    when
    "Building mn - $# (x64) - $#" (target_os stage) interpolate puts pop
    "nim c -d:$# --os:$# --mm:orc --deepcopy:on --opt:size mn" (stage target_os) interpolate (cmd) let
    cmd puts pop
    cmd run
    "tar -czvf $#.tar.gz mn$#" (o ext) interpolate 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