more curses Makfile mods
This commit is contained in:
+136
-137
@@ -112,8 +112,6 @@ MSWIN = ..\win\win32 # window port files (win32)
|
|||||||
WCURSES = ..\win\curses # window port files (curses)
|
WCURSES = ..\win\curses # window port files (curses)
|
||||||
WSHR = ..\win\share # Tile support files
|
WSHR = ..\win\share # Tile support files
|
||||||
|
|
||||||
! IF ("$(ADD_CURSES)"=="Y")
|
|
||||||
PDCURSES =
|
|
||||||
#
|
#
|
||||||
# Object directory.
|
# Object directory.
|
||||||
#
|
#
|
||||||
@@ -219,17 +217,6 @@ VSVER=2999 #untested future version
|
|||||||
!include <win32.mak>
|
!include <win32.mak>
|
||||||
! ENDIF
|
! ENDIF
|
||||||
|
|
||||||
#----------------------------------------------------------------
|
|
||||||
|
|
||||||
!IF "$(ADD_CURSES)" == "Y"
|
|
||||||
#CURSESDEF=-D"PDC_DLL_BUILD" -D"CURSES_GRAPHICS" -D"CURSES_BRIEF_INCLUDE"
|
|
||||||
CURSESDEF=-D"CURSES_GRAPHICS" -D"CURSES_BRIEF_INCLUDE"
|
|
||||||
!ELSE
|
|
||||||
CURSDEF=
|
|
||||||
CURSESLIB=
|
|
||||||
CURSESINCL=
|
|
||||||
!ENDIF
|
|
||||||
|
|
||||||
#These will be in the environment variables with one of the VS2017
|
#These will be in the environment variables with one of the VS2017
|
||||||
#developer command prompts.
|
#developer command prompts.
|
||||||
#VSCMD_ARG_HOST_ARCH=x64
|
#VSCMD_ARG_HOST_ARCH=x64
|
||||||
@@ -259,100 +246,6 @@ CL_RECENT=-sdl
|
|||||||
! ENDIF
|
! ENDIF
|
||||||
!ENDIF
|
!ENDIF
|
||||||
|
|
||||||
ccommon= -c -nologo -D"_CONSOLE" -D"_CRT_NONSTDC_NO_DEPRECATE" -D"_CRT_SECURE_NO_DEPRECATE" \
|
|
||||||
-D"_LIB" -D"_SCL_SECURE_NO_DEPRECATE" -D"_VC80_UPGRADE=0x0600" -D"DLB" -D"_MBCS" \
|
|
||||||
-DCRTAPI1=_cdecl -DCRTAPI2=_cdecl -D"NDEBUG" -D"YY_NO_UNISTD_H" $(CURSESDEF) \
|
|
||||||
-EHsc -fp:precise -Gd -GF -GS -Gy \
|
|
||||||
$(CL_RECENT) -WX- -Zc:forScope -Zc:wchar_t -Zi
|
|
||||||
cdebug= -analyze- -D"_DEBUG" -Gm -MTd -RTC1 -Od
|
|
||||||
crelease= -analyze- -D"_MBCS" -errorReport:prompt -Gm- -MT -O2 -Ot -Ox -Oy
|
|
||||||
|
|
||||||
lcommon= /NOLOGO /INCREMENTAL:NO
|
|
||||||
|
|
||||||
!IF "$(DEBUGINFO)" == "Y"
|
|
||||||
ldebug = /DEBUG
|
|
||||||
cflags1=$(ccommon) $(cdebug)
|
|
||||||
lflags1=$(lcommon) $(ldebug)
|
|
||||||
!ELSE
|
|
||||||
ldebug= /DEBUG
|
|
||||||
cflags1=$(ccommon) $(crelease)
|
|
||||||
lflags1=$(lcommon) $(ldebug)
|
|
||||||
!ENDIF
|
|
||||||
|
|
||||||
lflags= $(lflags1)
|
|
||||||
|
|
||||||
!IF "$(TARGET_CPU)" == "x86"
|
|
||||||
cflags = $(cflags1) -D_X86_=1 -DWIN32 -D_WIN32 -W3
|
|
||||||
scall = -Gz
|
|
||||||
|
|
||||||
!ELSEIF "$(TARGET_CPU)" == "x64"
|
|
||||||
cflags = $(cflags1) -D_AMD64_=1 -DWIN64 -D_WIN64 -DWIN32 -D_WIN32 -W4
|
|
||||||
scall =
|
|
||||||
!ENDIF
|
|
||||||
|
|
||||||
!IF ($(VSVER) >= 2012)
|
|
||||||
cflags = $(cflags:-W4=-W3)
|
|
||||||
!ENDIF
|
|
||||||
|
|
||||||
#More verbose warning output options below
|
|
||||||
#cflags = $(cflags:-W4=-wd4131
|
|
||||||
#cflags = $(cflags:-W4=-Wall)
|
|
||||||
#cflags = $(cflags:-W3=-wd4131
|
|
||||||
#cflags = $(cflags:-W3=-Wall)
|
|
||||||
|
|
||||||
# declarations for use on Intel x86 systems
|
|
||||||
!IF "$(TARGET_CPU)" == "x86"
|
|
||||||
DLLENTRY = @12
|
|
||||||
EXEVER=5.01
|
|
||||||
MACHINE=/MACHINE:X86
|
|
||||||
!ENDIF
|
|
||||||
|
|
||||||
# declarations for use on AMD64 systems
|
|
||||||
!IF "$(TARGET_CPU)" == "x64"
|
|
||||||
DLLENTRY =
|
|
||||||
EXEVER=5.02
|
|
||||||
MACHINE=/MACHINE:X64
|
|
||||||
!ENDIF
|
|
||||||
|
|
||||||
# for Windows applications
|
|
||||||
conlflags = $(lflags) -subsystem:console,$(EXEVER)
|
|
||||||
guilflags = $(lflags) -subsystem:windows,$(EXEVER)
|
|
||||||
dlllflags = $(lflags) -entry:_DllMainCRTStartup$(DLLENTRY) -dll
|
|
||||||
|
|
||||||
# basic subsystem specific libraries, less the C Run-Time
|
|
||||||
baselibs = kernel32.lib $(optlibs) $(winsocklibs) advapi32.lib gdi32.lib
|
|
||||||
winlibs = $(baselibs) user32.lib comdlg32.lib winspool.lib
|
|
||||||
|
|
||||||
# for Windows applications that use the C Run-Time libraries
|
|
||||||
conlibs = $(baselibs)
|
|
||||||
guilibs = $(winlibs)
|
|
||||||
#
|
|
||||||
|
|
||||||
!IFNDEF ADD_CURSES
|
|
||||||
INCLDIR= /I..\include /I..\sys\winnt
|
|
||||||
!ELSE
|
|
||||||
INCLDIR= /I..\include /I..\sys\winnt /I$(CURSESINCL)
|
|
||||||
!ENDIF
|
|
||||||
|
|
||||||
|
|
||||||
#==========================================
|
|
||||||
# Util builds
|
|
||||||
#==========================================
|
|
||||||
|
|
||||||
cflagsBuild = $(cflags) $(INCLDIR) $(WINPFLAG) $(DLBFLG)
|
|
||||||
lflagsBuild = $(lflags) $(conlibs) $(MACHINE)
|
|
||||||
|
|
||||||
#==========================================
|
|
||||||
# - Game build
|
|
||||||
#==========================================
|
|
||||||
|
|
||||||
LIBS= user32.lib winmm.lib $(ZLIB) $(CURSESLIB)
|
|
||||||
|
|
||||||
! IF ("$(USE_DLB)"=="Y")
|
|
||||||
DLB = nhdat
|
|
||||||
! ELSE
|
|
||||||
DLB =
|
|
||||||
! ENDIF
|
|
||||||
|
|
||||||
#==========================================
|
#==========================================
|
||||||
#================ MACROS ==================
|
#================ MACROS ==================
|
||||||
@@ -492,10 +385,8 @@ OPTIONS_FILE = $(DAT)\options
|
|||||||
PDCURSES_CURSES_H = $(PDCURSES_TOP)\curses.h
|
PDCURSES_CURSES_H = $(PDCURSES_TOP)\curses.h
|
||||||
PDCURSES_CURSPRIV_H = $(PDCURSES_TOP)\curspriv.h
|
PDCURSES_CURSPRIV_H = $(PDCURSES_TOP)\curspriv.h
|
||||||
PDCURSES_HEADERS = $(PDCURSES_CURSES_H) $(PDCURSES_CURSPRIV_H)
|
PDCURSES_HEADERS = $(PDCURSES_CURSES_H) $(PDCURSES_CURSPRIV_H)
|
||||||
PANEL_HEADER = $(PDCURSES_TOP)\panel.h
|
PDCSRC = $(PDCURSES_TOP)\pdcurses
|
||||||
TERM_HEADER = $(PDCURSES_TOP)\term.h
|
PDCWINCON = $(PDCURSES_TOP)\wincon
|
||||||
PDCSRC = $(PDCURSES_TOP)\wincon
|
|
||||||
|
|
||||||
PDCLIBOBJS = $(O)addch.o $(O)addchstr.o $(O)addstr.o $(O)attr.o $(O)beep.o \
|
PDCLIBOBJS = $(O)addch.o $(O)addchstr.o $(O)addstr.o $(O)attr.o $(O)beep.o \
|
||||||
$(O)bkgd.o $(O)border.o $(O)clear.o $(O)color.o $(O)delch.o $(O)deleteln.o \
|
$(O)bkgd.o $(O)border.o $(O)clear.o $(O)color.o $(O)delch.o $(O)deleteln.o \
|
||||||
$(O)deprec.o $(O)getch.o $(O)getstr.o $(O)getyx.o $(O)inch.o $(O)inchstr.o \
|
$(O)deprec.o $(O)getch.o $(O)getstr.o $(O)getyx.o $(O)inch.o $(O)inchstr.o \
|
||||||
@@ -507,12 +398,11 @@ PDCLIBOBJS = $(O)addch.o $(O)addchstr.o $(O)addstr.o $(O)attr.o $(O)beep.o
|
|||||||
|
|
||||||
PDCOBJS = $(O)pdcclip.o $(O)pdcdisp.o $(O)pdcgetsc.o $(O)pdckbd.o $(O)pdcscrn.o \
|
PDCOBJS = $(O)pdcclip.o $(O)pdcdisp.o $(O)pdcgetsc.o $(O)pdckbd.o $(O)pdcscrn.o \
|
||||||
$(O)pdcsetsc.o $(O)pdcutil.o
|
$(O)pdcsetsc.o $(O)pdcutil.o
|
||||||
PDCOSDIR = $(PDCURSES_SRCDIR)/wincon
|
|
||||||
|
|
||||||
PDCURSES_WIN_H = $(PDCOSDIR)/pdcwin.h
|
|
||||||
|
|
||||||
PDCLIB = $(O)\pdcurses.lib
|
PDCLIB = $(O)\pdcurses.lib
|
||||||
|
|
||||||
|
PDCINCL = /I$(PDCURSES_TOP) /I$(PDCSRC) /I$(PDCURSES_TOP)\pdcurses
|
||||||
|
|
||||||
!ELSE
|
!ELSE
|
||||||
PDCLIB =
|
PDCLIB =
|
||||||
!ENDIF
|
!ENDIF
|
||||||
@@ -554,6 +444,114 @@ TILE_H = ..\win\share\tile.h
|
|||||||
|
|
||||||
DATABASE = $(DAT)\data.base
|
DATABASE = $(DAT)\data.base
|
||||||
|
|
||||||
|
#==========================================
|
||||||
|
# More compiler setup post-macros
|
||||||
|
#==========================================
|
||||||
|
#----------------------------------------------------------------
|
||||||
|
|
||||||
|
!IF "$(ADD_CURSES)" == "Y"
|
||||||
|
#CURSESDEF=-D"PDC_DLL_BUILD" -D"CURSES_GRAPHICS" -D"CURSES_BRIEF_INCLUDE"
|
||||||
|
CURSESDEF=-D"CURSES_GRAPHICS" -D"CURSES_BRIEF_INCLUDE"
|
||||||
|
!ELSE
|
||||||
|
CURSDEF=
|
||||||
|
CURSESLIB=
|
||||||
|
CURSESINCL=
|
||||||
|
!ENDIF
|
||||||
|
|
||||||
|
ccommon= -c -nologo -D"_CONSOLE" -D"_CRT_NONSTDC_NO_DEPRECATE" -D"_CRT_SECURE_NO_DEPRECATE" \
|
||||||
|
-D"_LIB" -D"_SCL_SECURE_NO_DEPRECATE" -D"_VC80_UPGRADE=0x0600" -D"DLB" -D"_MBCS" \
|
||||||
|
-DCRTAPI1=_cdecl -DCRTAPI2=_cdecl -D"NDEBUG" -D"YY_NO_UNISTD_H" $(CURSESDEF) \
|
||||||
|
-EHsc -fp:precise -Gd -GF -GS -Gy \
|
||||||
|
$(CL_RECENT) -WX- -Zc:forScope -Zc:wchar_t -Zi
|
||||||
|
cdebug= -analyze- -D"_DEBUG" -Gm -MTd -RTC1 -Od
|
||||||
|
crelease= -analyze- -D"_MBCS" -errorReport:prompt -Gm- -MT -O2 -Ot -Ox -Oy
|
||||||
|
|
||||||
|
lcommon= /NOLOGO /INCREMENTAL:NO
|
||||||
|
|
||||||
|
!IF "$(DEBUGINFO)" == "Y"
|
||||||
|
ldebug = /DEBUG
|
||||||
|
cflags1=$(ccommon) $(cdebug)
|
||||||
|
lflags1=$(lcommon) $(ldebug)
|
||||||
|
!ELSE
|
||||||
|
ldebug= /DEBUG
|
||||||
|
cflags1=$(ccommon) $(crelease)
|
||||||
|
lflags1=$(lcommon) $(ldebug)
|
||||||
|
!ENDIF
|
||||||
|
|
||||||
|
lflags= $(lflags1)
|
||||||
|
|
||||||
|
!IF "$(TARGET_CPU)" == "x86"
|
||||||
|
cflags = $(cflags1) -D_X86_=1 -DWIN32 -D_WIN32 -W3
|
||||||
|
scall = -Gz
|
||||||
|
|
||||||
|
!ELSEIF "$(TARGET_CPU)" == "x64"
|
||||||
|
cflags = $(cflags1) -D_AMD64_=1 -DWIN64 -D_WIN64 -DWIN32 -D_WIN32 -W4
|
||||||
|
scall =
|
||||||
|
!ENDIF
|
||||||
|
|
||||||
|
!IF ($(VSVER) >= 2012)
|
||||||
|
cflags = $(cflags:-W4=-W3)
|
||||||
|
!ENDIF
|
||||||
|
|
||||||
|
#More verbose warning output options below
|
||||||
|
#cflags = $(cflags:-W4=-wd4131
|
||||||
|
#cflags = $(cflags:-W4=-Wall)
|
||||||
|
#cflags = $(cflags:-W3=-wd4131
|
||||||
|
#cflags = $(cflags:-W3=-Wall)
|
||||||
|
|
||||||
|
# declarations for use on Intel x86 systems
|
||||||
|
!IF "$(TARGET_CPU)" == "x86"
|
||||||
|
DLLENTRY = @12
|
||||||
|
EXEVER=5.01
|
||||||
|
MACHINE=/MACHINE:X86
|
||||||
|
!ENDIF
|
||||||
|
|
||||||
|
# declarations for use on AMD64 systems
|
||||||
|
!IF "$(TARGET_CPU)" == "x64"
|
||||||
|
DLLENTRY =
|
||||||
|
EXEVER=5.02
|
||||||
|
MACHINE=/MACHINE:X64
|
||||||
|
!ENDIF
|
||||||
|
|
||||||
|
# for Windows applications
|
||||||
|
conlflags = $(lflags) -subsystem:console,$(EXEVER)
|
||||||
|
guilflags = $(lflags) -subsystem:windows,$(EXEVER)
|
||||||
|
dlllflags = $(lflags) -entry:_DllMainCRTStartup$(DLLENTRY) -dll
|
||||||
|
|
||||||
|
# basic subsystem specific libraries, less the C Run-Time
|
||||||
|
baselibs = kernel32.lib $(optlibs) $(winsocklibs) advapi32.lib gdi32.lib
|
||||||
|
winlibs = $(baselibs) user32.lib comdlg32.lib winspool.lib
|
||||||
|
|
||||||
|
# for Windows applications that use the C Run-Time libraries
|
||||||
|
conlibs = $(baselibs)
|
||||||
|
guilibs = $(winlibs)
|
||||||
|
#
|
||||||
|
|
||||||
|
!IFNDEF ADD_CURSES
|
||||||
|
INCLDIR= /I..\include /I..\sys\winnt
|
||||||
|
!ELSE
|
||||||
|
INCLDIR= /I..\include /I..\sys\winnt /I$(CURSESINCL)
|
||||||
|
!ENDIF
|
||||||
|
|
||||||
|
#==========================================
|
||||||
|
# Util builds
|
||||||
|
#==========================================
|
||||||
|
|
||||||
|
cflagsBuild = $(cflags) $(INCLDIR) $(WINPFLAG) $(DLBFLG)
|
||||||
|
lflagsBuild = $(lflags) $(conlibs) $(MACHINE)
|
||||||
|
|
||||||
|
#==========================================
|
||||||
|
# - Game build
|
||||||
|
#==========================================
|
||||||
|
|
||||||
|
LIBS= user32.lib winmm.lib $(ZLIB) $(CURSESLIB)
|
||||||
|
|
||||||
|
! IF ("$(USE_DLB)"=="Y")
|
||||||
|
DLB = nhdat
|
||||||
|
! ELSE
|
||||||
|
DLB =
|
||||||
|
! ENDIF
|
||||||
|
|
||||||
#==========================================
|
#==========================================
|
||||||
#================ RULES ==================
|
#================ RULES ==================
|
||||||
#==========================================
|
#==========================================
|
||||||
@@ -597,19 +595,6 @@ DATABASE = $(DAT)\data.base
|
|||||||
{$(UTIL)}.c{$(OBJ)}.o:
|
{$(UTIL)}.c{$(OBJ)}.o:
|
||||||
@$(cc) $(cflagsBuild) -Fo$@ $<
|
@$(cc) $(cflagsBuild) -Fo$@ $<
|
||||||
|
|
||||||
#==========================================
|
|
||||||
# Rules for files in win\curses
|
|
||||||
#==========================================
|
|
||||||
|
|
||||||
{$(CURSES)}.c{$(OBJ)}.o:
|
|
||||||
@$(cc) $(cflagsBuild) -Fo$@ $<
|
|
||||||
|
|
||||||
{$(CURSES)}.h{$(INCL)}.h:
|
|
||||||
@copy $< $@
|
|
||||||
|
|
||||||
#{$(CURSES)}.txt{$(DAT)}.txt:
|
|
||||||
# @copy $< $@
|
|
||||||
|
|
||||||
#==========================================
|
#==========================================
|
||||||
# Rules for files in win\share
|
# Rules for files in win\share
|
||||||
#==========================================
|
#==========================================
|
||||||
@@ -638,15 +623,28 @@ DATABASE = $(DAT)\data.base
|
|||||||
{$(MSWIN)}.c{$(OBJ)}.o:
|
{$(MSWIN)}.c{$(OBJ)}.o:
|
||||||
@$(cc) $(cflagsBuild) -Fo$@ $<
|
@$(cc) $(cflagsBuild) -Fo$@ $<
|
||||||
|
|
||||||
|
#==========================================
|
||||||
|
# Rules for files in win\curses
|
||||||
|
#==========================================
|
||||||
|
|
||||||
|
{$(WCURSES)}.c{$(OBJ)}.o:
|
||||||
|
@$(cc) $(PDCINCL) $(cflagsBuild) -Fo$@ $<
|
||||||
|
|
||||||
|
#{$(WCURSES)}.txt{$(DAT)}.txt:
|
||||||
|
# @copy $< $@
|
||||||
|
|
||||||
#==========================================
|
#==========================================
|
||||||
# Rules for files in PDCurses
|
# Rules for files in PDCurses
|
||||||
#==========================================
|
#==========================================
|
||||||
|
|
||||||
{$(PDCURSES_TOP)}.c{$(OBJ)}.o:
|
{$(PDCURSES_TOP)}.c{$(OBJ)}.o:
|
||||||
@$(cc) $(cflagsBuild) -Fo$@ $<
|
@$(cc) $(PDCINCL) $(cflagsBuild) -Fo$@ $<
|
||||||
|
|
||||||
{$(PDCSRC)}.c{$(OBJ)}.o:
|
{$(PDCSRC)}.c{$(OBJ)}.o:
|
||||||
@$(cc) $(cflagsBuild) -Fo$@ $<
|
@$(cc) $(PDCINCL) $(cflagsBuild) -Fo$@ $<
|
||||||
|
|
||||||
|
{$(PDCWINCON)}.c{$(OBJ)}.o:
|
||||||
|
@$(cc) $(PDCINCL) $(cflagsBuild) -Fo$@ $<
|
||||||
|
|
||||||
#==========================================
|
#==========================================
|
||||||
#=============== TARGETS ==================
|
#=============== TARGETS ==================
|
||||||
@@ -798,12 +796,12 @@ GAMEOBJ=$(GAMEOBJ:^ =^
|
|||||||
# objs: $(GAMEOBJ) $(TTYOBJ) $(O)tile.o $(O)guistub.o
|
# objs: $(GAMEOBJ) $(TTYOBJ) $(O)tile.o $(O)guistub.o
|
||||||
|
|
||||||
|
|
||||||
$(GAMEDIR)\NetHack.exe : $(O)gamedir.tag $(O)tile.o $(O)nttty.o $(O)guistub.o \
|
$(GAMEDIR)\NetHack.exe : $(O)gamedir.tag $(PDCLIB) $(O)tile.o $(O)nttty.o $(O)guistub.o \
|
||||||
$(ALLOBJ) $(TTYOBJ) $(GUIOBJ) $(O)console.res $(KEYDLLS)
|
$(ALLOBJ) $(TTYOBJ) $(GUIOBJ) $(O)console.res $(KEYDLLS)
|
||||||
@if not exist $(GAMEDIR)\*.* mkdir $(GAMEDIR)
|
@if not exist $(GAMEDIR)\*.* mkdir $(GAMEDIR)
|
||||||
@echo Linking $(@:\=/)
|
@echo Linking $(@:\=/)
|
||||||
$(link) $(lflagsBuild) $(conlflags) /STACK:2048 /PDB:$(GAMEDIR)\$(@B).PDB /MAP:$(O)$(@B).MAP \
|
$(link) $(lflagsBuild) $(conlflags) /STACK:2048 /PDB:$(GAMEDIR)\$(@B).PDB /MAP:$(O)$(@B).MAP \
|
||||||
$(PDCLIB) $(LIBS) $(conlibs) -out:$@ @<<$(@B).lnk
|
$(LIBS) $(PDCLIB) $(conlibs) -out:$@ @<<$(@B).lnk
|
||||||
$(GAMEOBJ)
|
$(GAMEOBJ)
|
||||||
$(TTYOBJ)
|
$(TTYOBJ)
|
||||||
$(O)nttty.o
|
$(O)nttty.o
|
||||||
@@ -826,7 +824,7 @@ $(GAMEDIR)\NetHackW.exe : $(O)gamedir.tag $(O)tile.o $(O)ttystub.o \
|
|||||||
@if not exist $(GAMEDIR)\*.* mkdir $(GAMEDIR)
|
@if not exist $(GAMEDIR)\*.* mkdir $(GAMEDIR)
|
||||||
@echo Linking $(@:\=/)
|
@echo Linking $(@:\=/)
|
||||||
$(link) $(lflagsBuild) $(guilflags) /STACK:2048 /PDB:$(GAMEDIR)\$(@B).PDB \
|
$(link) $(lflagsBuild) $(guilflags) /STACK:2048 /PDB:$(GAMEDIR)\$(@B).PDB \
|
||||||
/MAP:$(O)$(@B).MAP $(LIBS) $(guilibs) $(COMCTRL) -out:$@ @<<$(@B).lnk
|
/MAP:$(O)$(@B).MAP $(LIBS) $(PDCLIB) $(guilibs) $(COMCTRL) -out:$@ @<<$(@B).lnk
|
||||||
$(GAMEOBJ)
|
$(GAMEOBJ)
|
||||||
$(GUIOBJ)
|
$(GUIOBJ)
|
||||||
$(O)tile.o
|
$(O)tile.o
|
||||||
@@ -1263,7 +1261,8 @@ $(O)til2bm32.o: $(WSHR)\tile2bmp.c $(HACK_H) $(TILE_H) $(MSWSYS)\win32api.h
|
|||||||
# PDCurses
|
# PDCurses
|
||||||
#==========================================
|
#==========================================
|
||||||
|
|
||||||
$(PDCLIB) : $(PDCLIBOBJS)
|
$(PDCLIB) : $(PDCLIBOBJS) $(PDCOBJS)
|
||||||
|
lib -nologo /out:$@ $(PDCLIBOBJS) $(PDCOBJS)
|
||||||
|
|
||||||
#==========================================
|
#==========================================
|
||||||
# Housekeeping
|
# Housekeeping
|
||||||
@@ -1539,9 +1538,9 @@ $(O)topl.o: ..\win\tty\topl.c $(HACK_H) $(INCL)\tcap.h
|
|||||||
@$(CC) $(cflagsBuild) -Fo$@ ..\win\tty\topl.c
|
@$(CC) $(cflagsBuild) -Fo$@ ..\win\tty\topl.c
|
||||||
$(O)wintty.o: ..\win\tty\wintty.c $(HACK_H) $(INCL)\dlb.h $(INCL)\tcap.h
|
$(O)wintty.o: ..\win\tty\wintty.c $(HACK_H) $(INCL)\dlb.h $(INCL)\tcap.h
|
||||||
@$(CC) $(cflagsBuild) -Fo$@ ..\win\tty\wintty.c
|
@$(CC) $(cflagsBuild) -Fo$@ ..\win\tty\wintty.c
|
||||||
$(O)Window.o: ..\win\X11\Window.c $(INCL)\xwindowp.h $(INCL)\xwindow.h \
|
#$(O)Window.o: ..\win\X11\Window.c $(INCL)\xwindowp.h $(INCL)\xwindow.h \
|
||||||
$(CONFIG_H)
|
# $(CONFIG_H)
|
||||||
@$(CC) $(cflagsBuild) -Fo$@ ..\win\X11\Window.c
|
# @$(CC) $(cflagsBuild) -Fo$@ ..\win\X11\Window.c
|
||||||
$(O)dialogs.o: ..\win\X11\dialogs.c $(CONFIG_H)
|
$(O)dialogs.o: ..\win\X11\dialogs.c $(CONFIG_H)
|
||||||
@$(CC) $(cflagsBuild) -Fo$@ ..\win\X11\dialogs.c
|
@$(CC) $(cflagsBuild) -Fo$@ ..\win\X11\dialogs.c
|
||||||
$(O)winX.o: ..\win\X11\winX.c $(HACK_H) $(INCL)\winX.h $(INCL)\dlb.h \
|
$(O)winX.o: ..\win\X11\winX.c $(HACK_H) $(INCL)\winX.h $(INCL)\dlb.h \
|
||||||
@@ -1739,7 +1738,7 @@ $(O)vision.o: vision.c $(HACK_H) $(INCL)\vis_tab.h
|
|||||||
$(O)weapon.o: weapon.c $(HACK_H)
|
$(O)weapon.o: weapon.c $(HACK_H)
|
||||||
$(O)were.o: were.c $(HACK_H)
|
$(O)were.o: were.c $(HACK_H)
|
||||||
$(O)wield.o: wield.c $(HACK_H)
|
$(O)wield.o: wield.c $(HACK_H)
|
||||||
$(O)windows.o: windows.c $(HACK_H) $(INCL)\wingem.h $(INCL)\winGnome.h
|
#$(O)windows.o: windows.c $(HACK_H) $(INCL)\wingem.h $(INCL)\winGnome.h
|
||||||
$(O)wizard.o: wizard.c $(HACK_H) $(INCL)\qtext.h
|
$(O)wizard.o: wizard.c $(HACK_H) $(INCL)\qtext.h
|
||||||
$(O)worm.o: worm.c $(HACK_H) $(INCL)\lev.h
|
$(O)worm.o: worm.c $(HACK_H) $(INCL)\lev.h
|
||||||
$(O)worn.o: worn.c $(HACK_H)
|
$(O)worn.o: worn.c $(HACK_H)
|
||||||
|
|||||||
Reference in New Issue
Block a user