Leaked source code of windows server 2003
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.
|
|
# ############################################################ # #Copyright (c) 2000 Microsoft Corporation # #Author: # byronc, coopp, keisuket, vlads # #Date: # 2-Feb-2000 # #Module Name: # sources.inc # #Abstract: # This file specifies the target component being built and the list of # sources files needed to build that component. Also specifies optional # compiler switches and libraries that are unique for the component being # built. # # This directory builds # StillImage class installer # # ############################################################
!include $(PROJECT_ROOT)\wia\wiaenv.inc
MAJORCOMP=windows MINORCOMP=splsetup
TARGETNAME=migrate TARGETPATH=$(OBJ_DIR) TARGETTYPE=DYNLINK
NTTARGETFILE0=$(O)\msg.h $(O)\msg.rc
DLLDEF=migrate.def DLLENTRY=DllEntryPoint TARGETEXT=dll COFFBASE=usermode UMTYPE=console
# # Make sure we pick up the latest versions of things #
WIN32_WINNT_VERSION=$(LATEST_WIN32_WINNT_VERSION)
# # Dynamically loading comctl32 through shfusion. Need to ignore "locally defined symbol imported" error # LINKER_FLAGS = $(LINKER_FLAGS) -ignore:4049,4217
INCLUDES=$(INCLUDES);$(BASE_INC_PATH);.
SOURCES= nt.c \ migmain.c \ migrate.rc \ util.c \ win9x.c
TARGETLIBS= $(TARGETLIBS) \ $(SHELL_LIB_PATH)\shfusion.lib \ $(SDK_LIB_PATH)\shell32.lib \ $(SDK_LIB_PATH)\mscms.lib \ $(SDK_LIB_PATH)\oldnames.lib \ $(SDK_LIB_PATH)\Version.lib \ $(WIA_LIB_PATH)\stirt.lib \ $(SDK_LIB_PATH)\wiaguid.lib
BINPLACE_PLACEFILE=placefil.txt USE_MSVCRT=1
C_DEFINES=-DVERBOSE -DDBG
|