This repository has been archived by the owner on Mar 16, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmake-nt.sh
executable file
·60 lines (50 loc) · 1.62 KB
/
make-nt.sh
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
44
45
46
47
48
49
50
51
52
53
54
55
56
#rem Script for building Paradyn & DynInstAPI on WinNT platform
#@echo off
#rem $Id: make-nt.sh,v 1.24 2005/10/12 19:20:52 legendre Exp $
#@echo on
set PLATFORM=i386-unknown-nt4.0
#set DEST_DIR="..\%PLATFORM%"
#set LIBRARY_DEST="..\%PLATFORM%\lib"
#set PROGRAM_DEST="..\%PLATFORM%\bin"
#if not exist %DEST_DIR% mkdir %DEST_DIR%
#if not exist %LIBRARY_DEST% mkdir %LIBRARY_DEST%
#if not exist %PROGRAM_DEST% mkdir %PROGRAM_DEST%
pwd
PDROOT=`pwd`
cd dyninstAPI_RT/$PLATFORM; nmake clean; nmake install
cd $PDROOT
cd dyninstAPI/$PLATFORM; nmake clean; nmake install
cd $PDROOT
cd dyninstAPI/tests/$PLATFORM; nmake clean; nmake install
cd $PDROOT
cd dyner/$PLATFORM; nmake clean; nmake install
cd $PDROOT
cd igen/$PLATFORM; nmake clean; nmake install
cd $PDROOT
cd mrnet/$PLATFORM; nmake clean; nmake install
cd $PDROOT
cd pdutil/$PLATFORM; nmake clean; nmake install
cd $PDROOT
cd rtinst/$PLATFORM; nmake clean; nmake install
cd $PDROOT
cd paradynd/$PLATFORM; nmake clean; nmake install
cd $PDROOT
cd pdthread/$PLATFORM; nmake clean; nmake install
cd $PDROOT
cd paradyn/$PLATFORM; nmake clean; nmake install
cd $PDROOT
cd visi/$PLATFORM; nmake clean; nmake install
cd $PDROOT
cd visiClients/histVisi/$PLATFORM; nmake clean; nmake install
cd $PDROOT
cd visiClients/barchart/$PLATFORM; nmake clean; nmake install
cd $PDROOT
cd visiClients/tableVisi/$PLATFORM; nmake clean; nmake install
cd $PDROOT
cd visiClients/phaseTable/$PLATFORM; nmake clean; nmake install
cd $PDROOT
cd visiClients/tclVisi/$PLATFORM; nmake clean; nmake install
cd $PDROOT
#rem No visiClients/terrain to build for WinNT!
cd sharedMem/$PLATFORM; nmake clean; nmake install
cd $PDROOT