source: trunk/third/xntp/blddbg.bat @ 10832

Revision 10832, 3.1 KB checked in by brlewis, 27 years ago (diff)
This commit was generated by cvs2svn to compensate for changes in r10831, which included commits to RCS files with non-trunk default branches.
  • Property svn:executable set to *
Line 
1@echo off
2REM
3REM File: blddbg.bat
4REM Purpose: To compile the XNTP source tree for Win NT.
5REM Date: 05/03/1996
6REM
7@echo on
8
9@echo -----------------------------------------
10@echo Building event logging Resources
11@echo -----------------------------------------
12@cd libntp
13call makemc
14@echo -----------------------------------------
15@echo Compiling the support library
16@echo -----------------------------------------
17nmake  /f libntp.mak CFG="libntp - Win32 Debug"
18
19@echo -----------------------------------------
20@echo Compiling ntpq program
21@echo -----------------------------------------
22@cd ..\ntpq
23perl ..\scripts\mkver.bat -P ntpq
24nmake  /f ntpq.mak CFG="ntpq - Win32 Debug"
25
26@echo -----------------------------------------
27@echo Compiling ntpdate program
28@echo -----------------------------------------
29@cd ..\ntpdate
30perl ..\scripts\mkver.bat -P ntpdate
31nmake  /f ntpdate.mak CFG="ntpdate - Win32 Debug"
32
33@echo -----------------------------------------
34@echo Compiling ntptrace program
35@echo -----------------------------------------
36@cd ..\ntptrace
37perl ..\scripts\mkver.bat -P ntptrace
38nmake  /f ntptrace.mak CFG="ntptrace - Win32 Debug"
39
40@echo -----------------------------------------
41@echo Compiling the Network Time Protocol server
42@echo -----------------------------------------
43@cd ..\xntpd
44perl ..\scripts\mkver.bat -P xntpd
45nmake  /f xntpd.mak CFG="xntpd - Win32 Debug"
46
47@echo -----------------------------------------
48@echo Compiling the NTP server control program
49@echo -----------------------------------------
50@cd ..\xntpdc
51perl ..\scripts\mkver.bat -P xntpdc
52nmake  /f xntpdc.mak CFG="xntpdc - Win32 Debug"
53
54@echo -----------------------------------------
55@echo Compiling the service installer
56@echo -----------------------------------------
57@cd ..\scripts\wininstall\instsrv
58nmake  /f instsrv.mak CFG="instsrv - Win32 Debug"
59
60@echo -----------------------------------------
61@echo Compiling the InstallShield support DLL
62@echo -----------------------------------------
63@cd ..
64nmake  /f ntpdll.mak CFG="ntpdll - Win32 Debug"
65
66@echo -----------------------------------------
67@echo Now copying all executables to the scripts\wininstall\distrib directory
68@echo -----------------------------------------
69@cd ..\..
70copy xntpd\windebug\*.exe    scripts\wininstall\distrib
71copy xntpdc\windebug\*.exe   scripts\wininstall\distrib
72copy ntpq\windebug\*.exe     scripts\wininstall\distrib
73copy ntpdate\windebug\*.exe  scripts\wininstall\distrib
74copy ntptrace\windebug\*.exe scripts\wininstall\distrib
75copy scripts\wininstall\instsrv\windebug\*.exe  scripts\wininstall\distrib
76copy scripts\wininstall\windebug\*.dll  scripts\wininstall
77@echo -----------------------------------------
78@echo -----------------------------------------
79@echo
80
81@echo -----------------------------------------
82@echo Building InstallShield Package
83@echo -----------------------------------------
84@cd scripts\wininstall
85build.bat
86
87@echo
88@echo -----------------------------------------
89@echo Build Complete
90@echo Run install.bat in scripts\wininstall\distrib
91@echo to complete installation.
92@echo -----------------------------------------
Note: See TracBrowser for help on using the repository browser.