diff options
Diffstat (limited to 'fpga/usrp3/top/b200/planahead/planahead.runs/.jobs')
-rw-r--r-- | fpga/usrp3/top/b200/planahead/planahead.runs/.jobs/job1.bat | 21 | ||||
-rwxr-xr-x | fpga/usrp3/top/b200/planahead/planahead.runs/.jobs/job1.sh | 26 |
2 files changed, 47 insertions, 0 deletions
diff --git a/fpga/usrp3/top/b200/planahead/planahead.runs/.jobs/job1.bat b/fpga/usrp3/top/b200/planahead/planahead.runs/.jobs/job1.bat new file mode 100644 index 000000000..f95ac9bd2 --- /dev/null +++ b/fpga/usrp3/top/b200/planahead/planahead.runs/.jobs/job1.bat @@ -0,0 +1,21 @@ +@echo off + +rem PlanAhead(TM) +rem launch.bat: a PlanAhead-generated ExploreAhead Script +rem Copyright 1986-1999, 2001-2012 Xilinx, Inc. All Rights Reserved. + + +setlocal + +set HD_LDIR=%~dp0 + +rem *** Create Queue Clues +set HD_RUNDIR=%HD_LDIR%\../impl_1 +if exist "%HD_RUNDIR%" echo. > "%HD_RUNDIR%/.ISE.queue.rst" + + +rem *** Launch Runs (one at a time) +set HD_RUNBAT=%HD_LDIR%\../impl_1\runme.bat +if exist "%HD_RUNBAT%" call "%HD_RUNBAT%" %* + + diff --git a/fpga/usrp3/top/b200/planahead/planahead.runs/.jobs/job1.sh b/fpga/usrp3/top/b200/planahead/planahead.runs/.jobs/job1.sh new file mode 100755 index 000000000..48861c686 --- /dev/null +++ b/fpga/usrp3/top/b200/planahead/planahead.runs/.jobs/job1.sh @@ -0,0 +1,26 @@ +#!/bin/sh + +# +# PlanAhead(TM) +# launch.sh: a PlanAhead-generated ExploreAhead Script for UNIX +# Copyright 1986-1999, 2001-2012 Xilinx, Inc. All Rights Reserved. +# + +HD_LDIR=`dirname "$0"` + +# *** Create Queue Clues +HD_RUNDIR="$HD_LDIR/../impl_1" +if [ -d "$HD_RUNDIR" ] +then +/bin/touch "$HD_RUNDIR/.ISE.queue.rst" +fi + + +# *** Launch Runs (one at a time) +HD_RUNSH="$HD_LDIR/../impl_1/runme.sh" +if [ -f "$HD_RUNSH" ] +then +"$HD_RUNSH" +fi + + |