1@REM  SCCS Id: @(#)nhsetup.bat	$Date: 2003/08/22 13:23:33 $
2@REM  Copyright (c) Alex Kompel, 2002
3@REM  NetHack may be freely redistributed.  See license for details.
4@REM  Win32 nhsetup batch file, see Install.ce for details
5@REM
6@echo off
7REM
8REM  Make sure directories necessary for build exist
9REM
10if NOT exist ..\..\wince\*.* mkdir ..\..\wince
11REM
12REM  Get these files from the win\win32 port
13REM
14copy ..\..\win\win32\mnsel.uu    ..\..\wince\mnsel.uu
15copy ..\..\win\win32\mnselcnt.uu ..\..\wince\mnselcnt.uu
16copy ..\..\win\win32\mnunsel.uu  ..\..\wince\mnunsel.uu
17copy ..\..\win\win32\petmark.uu  ..\..\wince\petmark.uu
18copy ..\..\sys\winnt\nhico.uu    ..\..\wince\nhico.uu
19copy ..\..\sys\wince\menubar.uu    ..\..\wince\menubar.uu
20copy ..\..\sys\wince\keypad.uu    ..\..\wince\keypad.uu
21REM
22REM  Get these files from sys\wince
23REM
24copy bootstrp.mak ..\..\wince\bootstrp.mak
25copy wince.vcw    ..\..\wince.vcw
26copy hpc.vcp      ..\..\wince\wince_hpc.vcp
27copy palmpc.vcp   ..\..\wince\wince_palm_pc.vcp
28copy pocketpc.vcp ..\..\wince\wince_pocket_pc.vcp
29copy smartphn.vcp ..\..\wince\wince_smartphone.vcp
30echo.
31echo Proceed with the following steps:
32echo.
33echo        cd ..\..\wince
34echo        nmake /f bootstrp.mak
35echo.
36echo Then start Embedded Visual C and open
37echo the workspace wince.vcw (at the top of the NetHack tree)
38echo to build.  See Install.ce for details.
39echo.
40
41