llvm-6502/utils/makellvm

17 lines
394 B
Plaintext
Raw Normal View History

#!/bin/csh -f
## LLVMDIR is simply the directory where this script resides!
set THISEXEC = $0 ## cannot use :h on $0 for some reason
set LLVMDIR = $THISEXEC:h
set EXEC = opt
if ($#argv > 0) then
if ($argv[1] == "-h") then
echo 'USAGE: makellvm [toolname] (toolname defaults to "opt").'
exit 0
endif
set EXEC = $argv[1]
endif
gnumake && (cd $LLVMDIR/tools/$EXEC && gnumake)