website/build.mb

25 lines
423 B
Plaintext
Raw Normal View History

2024-09-08 18:28:26 +02:00
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