]> git.uio.no Git - u/mrichter/AliRoot.git/blame - PYTHIA8/pythia8170/README.Win32
Ch. jets in pPb: Minor improvements
[u/mrichter/AliRoot.git] / PYTHIA8 / pythia8170 / README.Win32
CommitLineData
63ba5337 1====================================
2 INSTRUCTIONS FOR WINDOWS USERS
3====================================
4
5I) How to build
6II) How to clean
7
8Note: this is a first version, and does not (yet) have
9the full functionality offered for the Linux case.
10
11I) How to build
12===============
13
14To build Pythia8 on windows, open a command prompt,
15cd to the location where Pythia has been extracted,
16then type nmake with any of these options :
17
18to build in debug mode :
19
20 nmake -f Makefile.msc CFG="Win32 Debug"
21
22in optimized mode :
23
24 nmake -f Makefile.msc CFG="Win32 Release"
25
26libPythia8.lib will be located in $PYTHIADIR\lib directory
27
28
29II) How to clean
30===============
31
32To clean intermediate (obj) files :
33
34 nmake -f Makefile.msc clean CFG="Win32 Debug"
35or
36 nmake -f Makefile.msc clean CFG="Win32 Release"
37
38To clean all binaries (obj, idb, pdb, ilk, lib and exe) :
39
40 nmake -f Makefile.msc distclean CFG="Win32 Debug"
41or
42 nmake -f Makefile.msc distclean CFG="Win32 Release"
43