83 lines
1.8 KiB
Plaintext
83 lines
1.8 KiB
Plaintext
|
!IF 0
|
||
|
|
||
|
Copyright (C) Microsoft Corporation, 1999 - 1999
|
||
|
|
||
|
Module Name:
|
||
|
|
||
|
sources.
|
||
|
|
||
|
!ENDIF
|
||
|
|
||
|
USE_MFC = 1
|
||
|
|
||
|
MAJORCOMP=MMC
|
||
|
MINORCOMP=mmcparser
|
||
|
|
||
|
TARGETNAME=mmcparser20
|
||
|
TARGETPATH=obj
|
||
|
TARGETTYPE=DYNLINK
|
||
|
|
||
|
DLLENTRY=_DllMainCRTStartup
|
||
|
UMTYPE=windows
|
||
|
|
||
|
|
||
|
WIN32_WINNT_VERSION=0x0400
|
||
|
WIN32_IE_VERSION=0x0500
|
||
|
SUBSYSTEM_VERSION=4.00
|
||
|
|
||
|
USE_VCCOM=1
|
||
|
USE_STL=1
|
||
|
USE_STATIC_ATL=1
|
||
|
ATL_VER=30
|
||
|
|
||
|
# Lib's in LocStudio SDK do not use STDCALL, need to remove it here
|
||
|
386_STDCALL = 0
|
||
|
|
||
|
# LocStudio SDK locations
|
||
|
LOCS_INC=locStudioSDK\inc
|
||
|
! if $(FREEBUILD)
|
||
|
LOCS_LIB=locStudioSDK\lib\retail
|
||
|
! else
|
||
|
LOCS_LIB=locStudioSDK\lib\debug
|
||
|
! endif
|
||
|
|
||
|
# Use LINKLIBS (gets passed first) if: (from build.hlp)
|
||
|
# You are building a dynamic link.
|
||
|
# You are exporting something that's defined in some other component library that you also build.
|
||
|
# In your dirs file in the subdirectory above, you have ordered it so that the component libraries
|
||
|
# are around before you build the dynamic link.
|
||
|
LINKLIBS=\
|
||
|
|
||
|
|
||
|
TARGETLIBS=\
|
||
|
$(LOCS_LIB)\esputil.lib \
|
||
|
$(LOCS_LIB)\locutil.lib \
|
||
|
$(LOCS_LIB)\mitutil.lib \
|
||
|
$(LOCS_LIB)\parseman.lib \
|
||
|
$(LOCS_LIB)\parsutil.lib \
|
||
|
$(LOCS_LIB)\pbase.lib \
|
||
|
$(LOCS_LIB)\win32rt.lib \
|
||
|
$(SDK_LIB_PATH)\kernel32.lib \
|
||
|
$(SDK_LIB_PATH)\user32.lib \
|
||
|
$(SDK_LIB_PATH)\oleaut32.lib \
|
||
|
$(SDK_LIB_PATH)\ole32.lib \
|
||
|
$(SDK_LIB_PATH)\advapi32.lib \
|
||
|
$(SDK_LIB_PATH)\uuid.lib
|
||
|
|
||
|
|
||
|
DLLDEF=mmcparse.def
|
||
|
|
||
|
INCLUDES= ..\inc;$(LOCS_INC);
|
||
|
|
||
|
PRECOMPILED_INCLUDE = stdafx.h
|
||
|
PRECOMPILED_CXX = 1
|
||
|
|
||
|
SOURCES=\
|
||
|
parser.rc \
|
||
|
clasfact.cpp \
|
||
|
dllentry.cpp \
|
||
|
impfile.cpp \
|
||
|
impparse.cpp \
|
||
|
xml_supp.cpp
|
||
|
|