!IF 0

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


History:
    Common ccshell makefile and cleanup 15-Apr-96 Scott Hysom (scotth)
    Created 27-Sep-94 by Bob Day (bobday)
    from template created 12-Apr-1990 by Steve Wood (stevewo)

NOTE:   Commented description of this file is in \nt\public\oak\bin\sources.tpl

!ENDIF

MAJORCOMP   = msxml
MINORCOMP   = mimeview

# Do this to assure that we run on NT 4.0 and Win95, even with
# NT5/Memphis headers.
#

ROOT=$(MAKEDIR:\mimeviewer\src=)
!include $(ROOT)\common.inc

NO_NTDLL	= 1

TARGETNAME = mimeview
TARGETPATH = obj
TARGETTYPE = LIBRARY

SOURCES = \
    bufferedstream.cxx \
    expando.cxx \
    behaviour.cxx \
    xmlview.cxx \
    viewerfactory.cxx \
    filestream.cxx \
    mimedownload.cxx \
    callback.cxx

INCLUDES= \
    $(ROOT); \
    $(ROOT)\include; \
    $(ROOT)\core\base; \
    $(ROOT)\xml\om; \
    $(ROOT)\xml\resource; \
    $(ROOT)\xml\tokenizer\base; \
    $(SDK_INC_PATH)

!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


	
	
	
	
