mirror of https://github.com/tongzx/nt5src
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.
30 lines
470 B
30 lines
470 B
#
|
|
# Component: page heap (Page Heap Utility)
|
|
#
|
|
# Author: Silviu Calinoiu (SilviuC)
|
|
# Created: 02/02/99
|
|
#
|
|
|
|
MAJORCOMP=windows
|
|
MINORCOMP=base
|
|
|
|
TARGETPATH=obj
|
|
TARGETNAME=pageheap
|
|
TARGETTYPE=PROGRAM
|
|
|
|
LINKLIBS= $(SDK_LIB_PATH)\ntdll.lib
|
|
|
|
!if $(IA64)
|
|
LINKER_STACKSIZE=-stack:0x100000,0x6000
|
|
!else
|
|
LINKER_STACKSIZE=-stack:0x100000,0x3000
|
|
!endif
|
|
|
|
UMTYPE=console
|
|
USE_MSVCRT=1
|
|
USE_NATIVE_EH=1
|
|
|
|
C_DEFINES = -DWIN32 -DNT #-D_UNICODE
|
|
|
|
SOURCES = pageheap.cxx \
|
|
version.rc \
|