-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakeHelp.bat
More file actions
43 lines (35 loc) · 1.39 KB
/
Copy pathMakeHelp.bat
File metadata and controls
43 lines (35 loc) · 1.39 KB
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
34
35
36
37
38
39
40
41
42
43
@echo off
REM -- First make map file from Microsoft Visual C++ generated resource.h
REM -- Now done manually by running MakeTCHM.bat, so that we can check
REM -- hlp\TstCon.hm into SourceSafe for the localization crew to get at
REM -- -DBartol, 10/22/97
REM -- call MakeTCHM.bat
REM -- Make help for Project TstCon
REM -- Ancient hcrtf tool is unreliable; it hangs periodically in the builds.
REM -- For now, copy known good versions. BruceFo 01/23/2003
echo Building Win32 Help files
REM if exist hlp\TstCon32.hlp del hlp\TstCon32.hlp
REM REM start /wait hcw /C /E /M "hlp\TstCon.hpj"
REM start /wait hcrtf -x "hlp\TstCon.hpj"
REM if errorlevel 1 goto :Error
REM if not exist "hlp\TstCon32.hlp" goto :Error
REM if not exist "hlp\TstCon32.cnt" goto :Error
REM echo.
REM if exist Debug\nul copy "hlp\TstCon32.hlp" Debug
REM if exist Debug\nul copy "hlp\TstCon32.cnt" Debug
REM if exist Release\nul copy "hlp\TstCon32.hlp" Release
REM if exist Release\nul copy "hlp\TstCon32.cnt" Release
REM echo.
if not exist "Save\TstCon32.hlp" goto :Error
if not exist "Save\TstCon32.cnt" goto :Error
echo.
if exist Debug\nul copy "Save\TstCon32.hlp" Debug
if exist Debug\nul copy "Save\TstCon32.cnt" Debug
if exist Release\nul copy "Save\TstCon32.hlp" Release
if exist Release\nul copy "Save\TstCon32.cnt" Release
echo.
goto :done
:Error
echo hlp\TstCon.hpj(1) : error: Problem encountered creating help file
:done
echo.