mirror of
https://github.com/Ponce/slackbuilds
synced 2024-11-14 21:56:41 +01:00
14 lines
331 B
Tcsh
14 lines
331 B
Tcsh
|
#!/bin/csh
|
||
|
|
||
|
setenv AMDAPPSDKROOT /opt/amd-app-sdk
|
||
|
setenv AMDAPPSDKSAMPLESROOT /opt/amd-app-sdk
|
||
|
|
||
|
if ($?CPPFLAGS == 0) then
|
||
|
setenv CPPFLAGS "-I$AMDAPPSDKROOT/include"
|
||
|
else
|
||
|
setenv CPPFLAGS "$CPPFLAGS -I$AMDAPPSDKROOT/include"
|
||
|
endif
|
||
|
|
||
|
# For retrocompatibility with the former name of the SDK...
|
||
|
setenv ATISTREAMSDKROOT $AMDAPPSDKROOT
|