mirror of
https://github.com/mborgerson/xemu.git
synced 2025-11-01 17:09:57 +00:00
14 lines
167 B
Bash
Executable File
14 lines
167 B
Bash
Executable File
#!/bin/sh
|
|
|
|
set -eu
|
|
|
|
cat <<EOF
|
|
// @generated
|
|
// This file is autogenerated by scripts/rust_root_crate.sh
|
|
|
|
EOF
|
|
|
|
for crate in $*; do
|
|
echo "extern crate $crate;"
|
|
done
|