• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

README.mdH A D09-Mar-20191.2 KiB4428

bccos2.makH A D09-Mar-20192 KiB9164

gccos2.makH A D09-Mar-20193.2 KiB149113

iccos2.lrfH A D09-Mar-2019795 5150

iccos2.makH A D09-Mar-20196.7 KiB257172

pdcclip.cH A D09-Mar-20194.3 KiB189116

pdcdisp.cH A D09-Mar-20192.4 KiB9457

pdcgetsc.cH A D09-Mar-20191.8 KiB9063

pdckbd.cH A D09-Mar-201914.2 KiB522388

pdcos2.hH A D09-Mar-20191,004 5644

pdcscrn.cH A D09-Mar-201910.1 KiB450331

pdcsetsc.cH A D09-Mar-20192.8 KiB11365

pdcutil.cH A D09-Mar-2019994 5340

wccos2.makH A D09-Mar-2019954 4432

README.md

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 - Open Watcom 1.8+
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