A compromise between the speed of make and the ease of use of a build script
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
moonbuild/Build.moon

68 lines
1.6 KiB

4 years ago
public var 'MOONC', 'moonc'
public var 'AMALG', 'amalg.lua'
public var 'RM', 'rm', '-f', '--'
public var 'LUA', 'lua5.3'
var 'LIB_SRC', _.wildcard 'moonbuild/**.moon'
var 'BIN_SRC', _.wildcard 'bin/*.moon'
var 'LIB_LUA', _.patsubst LIB_SRC, '%.moon', '%.lua'
var 'BIN_LUA', _.patsubst BIN_SRC, '%.moon', '%.lua'
var 'BIN', _.patsubst BIN_LUA, 'bin/%.lua', 'out/%'
var 'LIB', 'out/moonbuild.lua'
4 years ago
var 'MODULES', _.foreach (_.patsubst LIB_LUA, '%.lua', '%'), => @gsub '/', '.'
with public default target 'all'
\after 'bin'
\after 'lib'
with public target 'install'
\after 'install-bin'
\after 'install-lib'
with public target 'install-bin'
\depends BIN
\produces _.patsubst BIN, 'out/%', '/usr/local/bin/%'
\fn => _.cmd 'sudo', 'cp', @infile, @outfile
\sync!
with public target 'install-lib'
\depends LIB
\produces "/usr/local/share/lua/#{LUA\gsub 'lua', ''}/moonbuild.lua"
\fn => _.cmd 'sudo', 'cp', @infile, @outfile
\sync!
4 years ago
with public target 'clean'
\fn => _.cmd RM, LIB_LUA
\fn => _.cmd RM, BIN_LUA
with public target 'mrproper'
\after 'clean'
\fn => _.cmd RM, BIN, LIB
4 years ago
with public target 'bin'
\depends BIN
with public target 'lib'
\depends LIB_LUA, LIB
4 years ago
with target BIN, pattern: 'out/%'
\depends 'bin/%.lua'
\produces 'out/%'
\mkdirs!
\fn =>
_.writefile @outfile, "#!/usr/bin/env #{LUA}\n#{_.readfile @infile}"
4 years ago
_.cmd 'chmod', '+x', @outfile
with target LIB
\depends 'moonbuild/init.lua'
\depends LIB_LUA
\produces '%'
\fn => _.cmd AMALG, '-o', @outfile, '-s', @infile, _.exclude MODULES, 'moonbuild.init'
4 years ago
with target {LIB_LUA, BIN_LUA}, pattern: '%.lua'
\depends '%.moon'
\produces '%.lua'
\fn => _.moonc @infile, @outfile