!IF 0

Copyright (c) 1989  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.

!ENDIF

MAJORCOMP=msxml
MINORCOMP=core

ROOT=$(MAKEDIR:\core\util=)
!include $(ROOT)\common.inc

TARGETNAME=util	
TARGETPATH=obj
TARGETTYPE=LIBRARY

SOURCES= \
    bitset.cxx \
    resources.cxx \
    stack.cxx \
    uhashtable.cxx \
    stringhashtable.cxx \
    wsstringbuffer.cxx \
    ws.cxx \
    datatype.cxx \
    name.cxx \
    atom.cxx \
    hashtable.cxx \
    vector.cxx \
    enumwrapper.cxx \
    _rawstack.cxx\

INCLUDES= \
	$(ROOT)\core\include; \
	$(ROOT)\core\base; \
	$(ROOT); 

!ifdef WIN16
PRECOMPILED_OPTION=/fhr /fh=$(ROOT)\include\$(O)\core.pch
!else
PRECOMPILED_OPTION=/Yucore.hxx /Fp$(ROOT)\include\$(O)\core.pch
!endif
PRECOMPILED_CXX=1



