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.
|
|
!IF 0
Copyright (c) -1996 Microsoft Corporation
Module Name:
sources.
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.
Author:
BogdanT 10/30/96
!ENDIF
!include $(CTOLESTG)\mac.mk
MAJORCOMP= dbcs MINORCOMP= ctolestg
# # This is the name of the target built from the source files specified # below. The name should include neither the path nor the file extension. #
TARGETNAME= dbcs
TARGETPATH= obj
# # This specifies the type of the target, such as PROGRAM, DYNLINK, LIBRARY, # etc. #
TARGETTYPE= LIBRARY
INCLUDES= ..\.; \ $(CT_INCLUDES)
C_DEFINES= $(C_DEFINES)
SOURCES= \ ..\dbcs.cxx
UMTYPE= macintosh
#LINKLIBS=
# # Note that macro names don't get expanded properly, so we have to # refer to the PCH via ..\..\... # PRECOMPILED_CXX= 1 PRECOMPILED_INCLUDE= ..\..\inc\dfheader.hxx PRECOMPILED_TARGET= ..\..\inc\mac\$(O)\dfheader.pch PRECOMPILED_OBJ= ..\..\inc\mac\$(O)\dfheader.obj PRECOMPILED_OPTION= /Yudfheader.hxx /Fp..\..\inc\mac\$(O)\dfheader.pch
|