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.vc

145 lines
3.2 KiB
Makefile

# Visual C++ & Intel(R) NMakefile for PDCurses library - Win32 VC++ 2.0+
#
# Usage: nmake -f [path\]Makefile.vc [DEBUG=] [DLL=] [WIDE=] [UTF8=]
# [ICC=] [CHTYPE_32=] [IX86=] [target]
#
# where target can be any of:
# [all|demos|tests|pdcurses.lib|testcurs.exe...]
# CHTYPE_## is used to override the default 64-bit chtypes in favor
# of "traditional" 32--bit chtypes.
# IX86 is used to build 32-bit code instead of 64-bit
# ICC is used to invoke Intel (R) tools icl.exe and xilink.exe, instead of
# MS tools cl.exe and link.exe
O = obj
E = .exe
!ifndef PDCURSES_SRCDIR
PDCURSES_SRCDIR = ..
!endif
!ifdef IX86
PLATFORM=IX86
!else
PLATFORM=X64
!endif
osdir = $(PDCURSES_SRCDIR)\wingui
common = $(PDCURSES_SRCDIR)\common
!include $(common)\libobjs.mif
PDCURSES_WIN_H = $(osdir)\pdcwin.h
!ifdef ICC
CC = icl.exe -nologo
LINK = xilink.exe -nologo
!else
CC = cl.exe -nologo
LINK = link.exe -nologo
!endif
!ifdef DEBUG
CFLAGS = -Z7 -DPDCDEBUG -MT -D_CRT_SECURE_NO_WARNINGS
LDFLAGS = -debug -pdb:none
!else
CFLAGS = -Ox -MT -W4 -D_CRT_SECURE_NO_WARNINGS
LDFLAGS =
!endif
!ifdef WIDE
WIDEOPT = -DPDC_WIDE
!endif
!ifdef UTF8
UTF8OPT = -DPDC_FORCE_UTF8
!endif
!ifdef CHTYPE_32
CHTYPE_FLAGS= -DCHTYPE_32
!endif
SHL_LD = link $(LDFLAGS) /NOLOGO /DLL /MACHINE:$(PLATFORM) /OUT:pdcurses.dll
CCLIBS = user32.lib gdi32.lib advapi32.lib shell32.lib comdlg32.lib \
winmm.lib
# may need to add msvcrt.lib for VC 2.x, VC 5.0 doesn't want it
#CCLIBS = msvcrt.lib user32.lib gdi32.lib advapi32.lib shell32.lib \
#comdlg32.lib winmm.lib
LIBEXE = lib -nologo
LIBCURSES = pdcurses.lib
CURSESDLL = pdcurses.dll
!ifdef DLL
DLLOPT = -DPDC_DLL_BUILD
PDCLIBS = $(CURSESDLL)
!else
PDCLIBS = $(LIBCURSES)
!endif
BUILD = $(CC) -I$(PDCURSES_SRCDIR) -c $(CFLAGS) $(CHTYPE_FLAGS) $(DLLOPT) \
$(WIDEOPT) $(UTF8OPT)
all: $(PDCLIBS)
clean:
-del *.obj 2>NUL
-del *.lib 2>NUL
-del *.exe 2>NUL
-del *.dll 2>NUL
-del *.exp 2>NUL
-del *.res 2>NUL
demos: $(PDCLIBS) $(DEMOS)
tests: $(PDCLIBS) $(TESTS)
DEMOOBJS = $(DEMOS:.exe=.obj) tui.obj
TESTOBJS = $(TESTS:.exe=.obj)
$(LIBOBJS) $(PDCOBJS) : $(PDCURSES_HEADERS)
$(PDCOBJS) : $(PDCURSES_WIN_H)
$(DEMOOBJS) : $(PDCURSES_CURSES_H)
$(DEMOS) : $(LIBCURSES)
$(TESTOBJS) : $(PDCURSES_CURSES_H)
$(TESTS) : $(LIBCURSES)
panel.obj : $(PANEL_HEADER)
terminfo.obj : $(TERM_HEADER)
!ifndef DLL
$(LIBCURSES) : $(LIBOBJS) $(PDCOBJS)
$(LIBEXE) -out:$@ $(LIBOBJS) $(PDCOBJS)
!endif
$(CURSESDLL) : $(LIBOBJS) $(PDCOBJS) pdcurses.obj
$(SHL_LD) $(LIBOBJS) $(PDCOBJS) pdcurses.obj $(CCLIBS)
pdcurses.res pdcurses.obj: $(common)\pdcurses.rc
rc /r /fopdcurses.res $(common)\pdcurses.rc
cvtres /MACHINE:$(PLATFORM) /NOLOGO /OUT:pdcurses.obj pdcurses.res
{$(srcdir)\}.c{}.obj::
$(BUILD) $<
{$(osdir)\}.c{}.obj::
$(BUILD) $<
{$(demodir)\}.c{}.obj::
$(BUILD) $<
{$(testdir)\}.c{}.obj::
$(BUILD) $<
.obj.exe:
$(LINK) $(LDFLAGS) $< $(LIBCURSES) $(CCLIBS)
tuidemo.exe: tuidemo.obj tui.obj
$(LINK) $(LDFLAGS) $*.obj tui.obj $(LIBCURSES) $(CCLIBS)
tui.obj: $(demodir)\tui.c $(demodir)\tui.h
$(BUILD) -I$(demodir) $(demodir)\tui.c
tuidemo.obj: $(demodir)\tuidemo.c
$(BUILD) -I$(demodir) $(demodir)\tuidemo.c