website/build.mb
2024-09-08 18:32:49 +02:00

25 lines
423 B
Plaintext

sector config
section mariebuild
str build_type 'incremental'
list str targets 'static'
str default 'static'
end
end
sector targets
section static
list str c_rules 'sites'
end
end
sector c_rules
section sites
list str input 'index'
str input_format 'data/$(%element%).sad'
str output_format '$(%element%).html'
str exec 'bin/fpc-sitegen -i $(%input%) -o $(%output%)'
end
end