forked from jbrandwood/teos
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbuild.cmd
More file actions
33 lines (22 loc) · 713 Bytes
/
Copy pathbuild.cmd
File metadata and controls
33 lines (22 loc) · 713 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
@echo off
rem ***************************************************************************
rem Put this in your main project directory.
rem
rem It expects "huc" and "squirrel" directories to be in the parent
rem directory, i.e. one level higher.
rem ***************************************************************************
setlocal
cd /d "%~dp0"
pushd
cd ..
set PATH=%CD%\huc\bin;%PATH%
popd
set PCE_INCLUDE=%CD%
pceas -raw -m -l 2 -S teos.s
if errorlevel 1 goto :error
exit /b 0
rem ***************************************************************************
:error
rem pause
exit /b 1
rem ***************************************************************************