Sign in
qemu
/
meson
/
374fa7f0da278d46a4c3adb587f4b43089f5d7db
/
.
/
test cases
/
common
/
202 custom target build by default
/
docgen.py
blob: f343f21787dad35f762d3e8d4579e6ee6a6dfb13 [
file
] [
log
] [
blame
]
#!/usr/bin/env python3
import
os
import
sys
out
=
sys
.
argv
[
1
]
os
.
mkdir
(
out
)
for
name
in
(
'a'
,
'b'
,
'c'
):
with
open
(
os
.
path
.
join
(
out
,
name
+
'.txt'
),
'w'
)
as
f
:
f
.
write
(
name
)