You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
qemu/scripts/rust/rust_root_crate.sh

14 lines
167 B
Bash

#!/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