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.
PDCursesMod/wingui/Makefile.wcc

33 lines
594 B
Makefile

# Watcom WMAKE Makefile for PDCurses library - Win32 Watcom C/C++ 10.6+
#
# Usage: wmake -f [wingui/]Makefile.wcc [DEBUG=Y] [WIDE=Y] [UTF8=Y] [target]
#
# where target can be any of:
# [all|demos|pdcurses.lib|testcurs.exe...]
!ifdef %PDCURSES_SRCDIR
PDCURSES_SRCDIR = $(%PDCURSES_SRCDIR)
!else
PDCURSES_SRCDIR = ..
!endif
common = $(PDCURSES_SRCDIR)/common
osdir = wingui
TARGET = nt
LTARGET = nt_win
CFLAGS = -ei
!ifeq DLL Y
ADDED_LIBS_FOR_DLL = lib winmm.lib
!else
ADDED_LIBS = lib winmm.lib
!endif
EXTRA_LIB_CMD = -$(COPY) $(PDCNAME).lib panel.lib
!include $(common)/watcom.mif