You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
552 B
Makefile
34 lines
552 B
Makefile
# Watcom Makefile for PDCurses - Windows console
|
|
#
|
|
# Usage: wmake -f [path\]Makefile.wcc [DEBUG=Y] [WIDE=Y] [UTF8=Y]
|
|
# [INFOEX=N] [target]
|
|
#
|
|
# where target can be any of:
|
|
# [all|demos|pdcurses.lib|testcurs.exe...]
|
|
|
|
!ifdef %PDCURSES_SRCDIR
|
|
PDCURSES_SRCDIR = $(%PDCURSES_SRCDIR)
|
|
!else
|
|
PDCURSES_SRCDIR = ..
|
|
!endif
|
|
|
|
osdir = wincon
|
|
|
|
TARGET = nt
|
|
|
|
LTARGET = nt
|
|
|
|
CFLAGS =
|
|
|
|
!ifeq INFOEX N
|
|
CFLAGS += -DHAVE_NO_INFOEX
|
|
!endif
|
|
|
|
!ifeq DLL Y
|
|
ADDED_LIBS_FOR_DLL=lib winmm.lib
|
|
!else
|
|
ADDED_LIBS=lib winmm.lib
|
|
!endif
|
|
|
|
!include $(PDCURSES_SRCDIR)/common/watcom.mif
|