Added setup scripts to quickly set current local repo as OPENRAM_HOME and OPENRAM_TECH

This commit is contained in:
Matt Guthaus 2017-05-31 12:16:49 -07:00
parent 46c56863ee
commit dc375ff1c3
2 changed files with 16 additions and 0 deletions

8
setpaths.csh Executable file
View File

@ -0,0 +1,8 @@
#!/bin/csh
# This is a csh utility script to set the paths to the current
# directory of OpenRAM. It must be sourced in the local directory
# like this:
# source setpaths.csh
setenv OPENRAM_HOME "`pwd`/compiler"
setenv OPENRAM_TECH "`pwd`/technology"

8
setpaths.sh Executable file
View File

@ -0,0 +1,8 @@
#!/bin/bash
# This is a bash utility script to set the paths to the current
# directory of OpenRAM. It must be sourced in the local directory
# like this:
# source setpaths.sh
export OPENRAM_HOME="`pwd`/compiler"
export OPENRAM_TECH="`pwd`/technology"