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.
64 lines
1.1 KiB
64 lines
1.1 KiB
#----------------------------------------------------------------------------
|
|
#
|
|
# Description:
|
|
#
|
|
#
|
|
# History:
|
|
#
|
|
#
|
|
#
|
|
#----------------------------------------------------------------------------
|
|
|
|
|
|
MINORCOMP=pstoreex
|
|
TARGETNAME=pstoreex
|
|
|
|
TARGETTYPE=DYNLINK
|
|
TARGETPATH=$(_OBJ_DIR)
|
|
|
|
|
|
INCLUDES= $(NTINCLUDES);$(INCLUDES);.\inc;
|
|
|
|
# TODO real DLLBASE
|
|
DLLBASE=0x60000000
|
|
DLLENTRY=DllMain
|
|
|
|
|
|
!if $(FREEBUILD)
|
|
|
|
C_DEFINES=$(C_DEFINES) -D_CRTIMP=
|
|
|
|
!UNDEF USE_MSVCRT
|
|
USE_LIBCNTPR=1
|
|
!endif
|
|
|
|
NO_NTDLL=1
|
|
|
|
LINKLIBS=\
|
|
.\lib\*\unicode.lib \
|
|
.\lib\*\crtem.lib
|
|
|
|
TARGETLIBS= \
|
|
$(SDK_LIB_PATH)\kernel32.lib \
|
|
$(SDK_LIB_PATH)\user32.lib \
|
|
$(SDK_LIB_PATH)\shell32.lib \
|
|
$(SDK_LIB_PATH)\comctl32.lib \
|
|
$(SDK_LIB_PATH)\ole32.lib \
|
|
$(SDK_LIB_PATH)\advapi32.lib \
|
|
$(SDK_LIB_PATH)\uuid.lib \
|
|
.\lib\*\pstorec.lib
|
|
|
|
|
|
SOURCES=\
|
|
classfac.cpp \
|
|
enumid.cpp \
|
|
main.cpp \
|
|
shfolder.cpp \
|
|
shview.cpp \
|
|
icon.cpp \
|
|
utility.cpp \
|
|
psexsup.cpp \
|
|
listansi.cpp \
|
|
listunic.cpp \
|
|
pstoreex.rc
|
|
|