Skip to content

Commit 90f98de

Browse files
committed
imported from disks
0 parents  commit 90f98de

File tree

171 files changed

+36069
-0
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

171 files changed

+36069
-0
lines changed

DMAKE/DMAKE.DOC

Lines changed: 691 additions & 0 deletions
Large diffs are not rendered by default.

DMAKE/DMAKE.EXE

92.9 KB
Binary file not shown.

DMAKE/DMAKE.INI

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
;;Fill in path where you want tools to be cached into
2+
;; path= and SyncPath=
3+
4+
;;To log slave activity add filename to Logfile =
5+
;;To use particular slaves add to UseList =
6+
7+
;;Read Dmake.Doc for more information about these
8+
9+
[dmake]
10+
11+
ExtraDomains = dmaketest
12+
HitList = byrond2
13+
LocalOnly = cls date del dir erase exit extract if md mkdir rd ren
14+
rename rmdir type ver verify vol
15+
Logfile =
16+
NoLocals = 1
17+
NonPar = lib dmake
18+
UseList =
19+
20+
21+
[Passwords]
22+
23+
[SyncTools]
24+
cl = cl.exe c1.exe c1.err c2.exe c3.exe c23.err
25+
sed = sed.exe
26+
masm = masm.exe
27+
link = link.exe
28+
grep = grep.exe
29+
fgrep = fgrep.exe
30+
lib = lib.exe
31+
32+
[MkSlave]
33+
Distribute = yes
34+
DelTools = 20
35+
LocalEnvs = comspec tmp
36+
MaxCache = 2048
37+
SyncPath =
38+
39+
40+
[PathMods]
41+
Path =

DMAKE/DMK.DLL

12.6 KB
Binary file not shown.

DMAKE/DMKV.DLL

9.75 KB
Binary file not shown.

DMAKE/INSTALL.DOC

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,52 @@
1+
DMAKE Installation Guide -- Companion to DMAKE.DOC and USERINFO.DOC
2+
3+
4+
DMAKE Quick Installation Procedure
5+
----------------------------------
6+
7+
1. Check your LANMAN.INI file.
8+
Edit the 'domain' switch to specify the same domain as other DMAKE
9+
users. This is the domain that has the maximum number of slave
10+
computers and thus the best performance.
11+
Check to see if you have share-level security (security = share).
12+
The recommended security is share-level. If you use user-level
13+
security, see DMAKE.DOC.
14+
Make the 6th entry in srvheuristics 4 (srvheuristics = 1111014...).
15+
Entries begin with the 0th entry.
16+
Check that your server is visible (srvhidden = no).
17+
Check that your server services is a standard server
18+
(server = services\netsvini.exe). The server must NOT be a
19+
Peer server (server = services\netpsini.exe).
20+
21+
2. Copy DMK.DLL and DMKV.DLL to a directory in the LIBPATH specified
22+
in your CONFIG.SYS. It is recommended that you copy non-system
23+
dynamic-link libraries (DLLs) to a separate directory (for example,
24+
C:\DLL) so that if you upgrade your version of MS (R) OS/2, non-MS
25+
OS/2 DLLs are not deleted. You may have to change the LIBPATH entry
26+
in your CONFIG.SYS. If so, you should reboot your computer.
27+
28+
3. Copy the four executables (DMAKE, MKSLAVE, SLVSTAT, PERFMTR) to a
29+
directory in your PATH.
30+
31+
4. Copy DMAKE.INI to your INIT environment directory. The slave program
32+
caches tools used for builds in a directory you specify in your
33+
DMAKE.INI file. Decide on a path, and then change 'Path' and
34+
'SyncPath' in DMAKE.INI to those values.
35+
36+
5. Check to see that you have a TMP environment variable set.
37+
38+
At this point, you have finished installing DMAKE.
39+
40+
Note: Read DMAKE.DOC to learn about DMAKE.
41+
42+
To use DMAKE, execute the following commands (they can be added to
43+
your STARTUP.CMD file):
44+
45+
start cpumeter
46+
start mkslave
47+
48+
You can run DMAKE instead of NMAKE. Because DMAKE uses the same syntax as
49+
NMAKE, it can use NMAKE makefiles unchanged. Try a simple makefile and see
50+
what happens. If you see commands preceded by text between square brackets
51+
(for example, [Local 1]), DMAKE is running.
52+

DMAKE/MKSLAVE.EXE

29.4 KB
Binary file not shown.

DMAKE/PERFMTR.EXE

43 KB
Binary file not shown.

DMAKE/PERFMTR.HLP

5.33 KB
Binary file not shown.

DMAKE/REMOTE.CMD

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,9 @@
1+
@Echo Off
2+
Rem Copyright (C) 1990, Microsoft Corporation. All rights reserved.
3+
Rem Batch file to remote exec a command [on some DMAKE slave]
4+
if "%1" == "" goto Usage
5+
(echo exec_it: & echo %1 %2 %3 %4 %5 %6 %7 %8 %9) | dmake /f - /local:0 /nologo
6+
goto end
7+
:Usage
8+
echo Usage: remote command [args ...]
9+
:end

0 commit comments

Comments
 (0)