2021-08-22 06:30:14 -04:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
|
|
|
## Did not get this working in meson directly.
|
|
|
|
## not via generator or custom_target.
|
|
|
|
|
2021-08-27 09:33:35 -04:00
|
|
|
|
|
|
|
pushd "${MESON_BUILD_ROOT}"
|
2021-08-22 06:30:14 -04:00
|
|
|
|
|
|
|
for a in $@
|
|
|
|
do
|
|
|
|
go-md2man -in $a -out ${a%.markdown}
|
|
|
|
done
|