libpayload: Add PDCurses and ncurses' libform/libmenu
[coreboot.git] / payloads / libpayload / curses / PDCurses-3.4 / os2 / wccos2.mak
1 # Watcom WMAKE Makefile for PDCurses library - OS/2 Open Watcom 1.1+
2 #
3 # Usage: wmake -f [path\]wccos2.mak [DEBUG=Y] [target]
4 #
5 # where target can be any of:
6 # [all|demos|pdcurses.lib|testcurs.exe...]
7
8 !ifdef %PDCURSES_SRCDIR
9 PDCURSES_SRCDIR = $(%PDCURSES_SRCDIR)
10 !else
11 PDCURSES_SRCDIR = ..
12 !endif
13
14 !include $(PDCURSES_SRCDIR)\version.mif
15
16 osdir           = $(PDCURSES_SRCDIR)\os2
17
18 CC              = wcc386
19 TARGET          = os2v2
20
21 CFLAGS          = /bt=$(TARGET) /wx /s /zq /i=$(PDCURSES_SRCDIR)
22
23 !ifeq DEBUG Y
24 CFLAGS          += /d2 /DPDCDEBUG
25 LDFLAGS         = D A op q sys $(TARGET)
26 !else
27 CFLAGS          += /oneatx
28 LDFLAGS         = op q sys $(TARGET)
29 !endif
30
31 LIBEXE          = wlib /q /n /b /c /t
32
33 !include $(PDCURSES_SRCDIR)\watcom.mif
34
35 $(LIBCURSES) : $(LIBOBJS) $(PDCOBJS)
36         $(LIBEXE) $@ $(LIBOBJS) $(PDCOBJS)
37         -copy $(LIBCURSES) panel.lib
38
39 PLATFORM1       = Watcom C++ OS/2
40 PLATFORM2       = Open Watcom 1.6 for OS/2
41 ARCNAME         = pdc$(VER)_wcc_os2
42
43 !include $(PDCURSES_SRCDIR)\makedist.mif