mirror of https://github.com/lianthony/NT4.0
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
52 lines
719 B
52 lines
719 B
# THUNK Make file
|
|
#
|
|
#
|
|
|
|
# Build Environment
|
|
ROOT=..\..\..\..\..\..\..
|
|
IS_OEM=1
|
|
|
|
# international mode
|
|
|
|
!ifdef DBCS
|
|
FDTHK = FdThkDB
|
|
!else
|
|
FDTHK = FdThk
|
|
!endif
|
|
|
|
THKASM = TapiThk.asm Tapi32.asm TapiFThk.asm
|
|
FTHKASM = TapiFThk.asm
|
|
|
|
|
|
TARGETS= $(THKASM)
|
|
|
|
|
|
#DEPENDNAME=..\depend.mk
|
|
|
|
#!include $(ROOT)\win\core\core.mk
|
|
|
|
INCLUDE =
|
|
|
|
#WIN32DEV=..\..\..\..\dev
|
|
#WINCORE=..\..
|
|
|
|
THUNKCOM = $(ROOT)\dev\tools\binr\thunk.exe
|
|
|
|
THUNK = $(THUNKCOM) $(THUNKOPT)
|
|
|
|
!IF "$(VERDIR)" == "maxdebug" || "$(VERDIR)" == "debug"
|
|
THUNKOPT =
|
|
!ELSE
|
|
THUNKOPT =
|
|
!ENDIF
|
|
|
|
|
|
$(THKASM) : $(THUNKCOM) ..\$(@B).thk
|
|
$(THUNK) -NC THUNK16B -o $(@B) ..\$(@B).thk
|
|
|
|
|
|
TapiThk.asm TapiFThk.asm Tapi32.asm: ..\TapiThk.inc
|
|
|
|
showenv:
|
|
set
|
|
|