blob: f95ac9bd289e0dc557e7c3e75d3825f3817020fa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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%" %*
|