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.
38 lines
903 B
38 lines
903 B
MAJORCOMP=userenv
|
|
MINORCOMP=profmap
|
|
|
|
TARGETNAME=profmap
|
|
TARGETTYPE=DYNLINK
|
|
TARGETPATH=$(SECURITY_LIB_DEST)
|
|
|
|
# compiler options
|
|
USE_MSVCRT=1
|
|
C_DEFINES=-DUNICODE
|
|
|
|
# include path
|
|
INCLUDES=$(WINDOWS_INC_PATH);\
|
|
$(COM_INC_PATH); \
|
|
..\..\inc;
|
|
|
|
SOURCES=profmap.c \
|
|
debug.c \
|
|
userenv.c \
|
|
profmap.rc \
|
|
regrep.c
|
|
|
|
|
|
# linker options
|
|
DLLDEF=profmap.def
|
|
DLLENTRY=_DllMainCRTStartup
|
|
|
|
# link libraries
|
|
TARGETLIBS= \
|
|
$(SDK_LIB_PATH)\kernel32.lib \
|
|
$(SDK_LIB_PATH)\ntdll.lib \
|
|
$(SDK_LIB_PATH)\advapi32.lib \
|
|
$(SDK_LIB_PATH)\user32.lib \
|
|
$(SDK_LIB_PATH)\rpcutil.lib \
|
|
$(SDK_LIB_PATH)\rpcrt4.lib \
|
|
$(SDK_LIB_PATH)\netapi32.lib \
|
|
$(SDK_LIB_PATH)\uuid.lib \
|
|
$(SDK_LIB_PATH)\userenv.lib
|