README
1PDCurses for OS/2
2=================
3
4This directory contains PDCurses source code files specific to OS/2.
5
6
7Building
8--------
9
10. Choose the appropriate makefile for your compiler:
11
12 bccos2.mak - Borland C++ 2.0
13 gccos2.mak - EMX 0.9b+
14 iccos2.mak - C Set/2
15 wccos2.mak - Watcom 10.6+ (32-bit)
16
17. Optionally, you can build in a different directory than the platform
18 directory by setting PDCURSES_SRCDIR to point to the directory where
19 you unpacked PDCurses, and changing to your target directory:
20
21 set PDCURSES_SRCDIR=c:\pdcurses
22
23. Build it:
24
25 make -f makefilename
26
27 (For Watcom, use "wmake" instead of "make"; for MSVC or C Set/2,
28 "nmake".) You'll get the libraries (pdcurses.lib or .a, depending on
29 your compiler; and panel.lib or .a), the demos (*.exe), and a lot of
30 object files. Note that the panel library is just a copy of the main
31 library, provided for convenience; both panel and curses functions are
32 in the main library.
33
34 You can also use the optional parameter "DLL=Y" with EMX, to build the
35 library as a DLL:
36
37 make -f gccos2.mak DLL=Y
38
39
40Distribution Status
41-------------------
42
43The files in this directory are released to the Public Domain.
44