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.
32 lines
529 B
32 lines
529 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
|
|
|
|
MSC_WARNING_LEVEL=/W4 /WX
|
|
|
|
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 \
|