Changes between Version 1 and Version 2 of Building


Ignore:
Timestamp:
May 2, 2007, 1:27:14 AM (17 years ago)
Author:
stevenhl
Comment:

--

Legend:

Unmodified
Added
Removed
Modified
  • Building

    v1 v2  
    66The new build instructions are here.
    77
     8The first thing you need to do is install [http://www.openwatcom.org/ OpenWatcom].  You need to install at least the OS/2 C and C++ support for OS/2 16-bit and 32-bit targets.
    89
     10Next you need to install the IBM Driver Development Kit (DDK) Toolkit.  IBM no longer makes this toolkit publically available, so if you need a copy TBD.  The long term plan is to implement open source versions of the DDK  Toolkit headers in OpenWatcom which will eliminate the need for the DDK.
     11
     12Now you need to build Makefile.inc.  This file configures the uniaud makefiles for your specific directory layout.  Assuming directory layout described in [WikeStart#Gettingthesources Getting the sources], run
     13
     14{{{
     15cd uniaud32_workspace
     16trunk\configure
     17}}}
     18
     19and answer the questions.  Review the generated Makefile.inc and verify that the pathnames are correct.  This script has some issues.
     20
     21Once you are satisfied, copy the file to the root of your uniaud16 workspace.  This is the uniaud16_workspace referred to in the examples [WikeStart#Gettingthesources Getting the Sources].  There really should need to be only one instance of this file, but this will have to wait until the makefiles get some rework.
     22
     23To build uniaud32, do whatever you do that make the OpenWatcom available in the current command line session and then
     24
     25{{{
     26cd uniaud32_workspace\trunk
     27!m_kee.cmd
     28}}}
     29
     30!m_kee.cmd is a simple wmake front-end.
     31
     32A full build should take about 15? minutes on reasonably capable hardware.
     33
     34To build uniaud16, do
     35
     36{{{
     37cd uniaud16_workspace\trunk
     38wmake -ms -f makefile.os2
     39}}}
     40
     41A full build should take less than 5? minutes on reasonably capable hardware.