mirror of
https://github.com/ROCm/ROCm.git
synced 2026-04-05 03:01:17 -04:00
15 lines
286 B
Bash
Executable File
15 lines
286 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -ex
|
|
|
|
source "$(dirname "${BASH_SOURCE[0]}")/compute_helper.sh"
|
|
|
|
stage2_command_args "$@"
|
|
|
|
case $TARGET in
|
|
build) echo "end of rocm-dev build..." ;;
|
|
outdir) ;;
|
|
clean) echo "Cleaning rocm-dev is not required..." ;;
|
|
*) die "Invalid target $TARGET" ;;
|
|
esac
|