!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.


Author:

    Jim Schaad (jimsch)

!ENDIF

MAJORCOMP=windbg
MINORCOMP=dm

TARGETNAME=dm
TARGETPATH=obj
TARGETTYPE=DYNLINK

DLLENTRY=DllInit

SOURCES= \
    ..\bp.c        \
    ..\dmx32.c     \
    ..\event.c     \
    ..\funccall.c  \
    ..\procem.c    \
    ..\step.c      \
    ..\util.c      \
    ..\walk.c      \
    process.c      \
    userapi.c      \
    wow.c          \
    dm.rc

i386_SOURCES=   \
    ..\i386mach.c \
    ..\i386d3dm.c

mips_SOURCES=   \
    ..\mipsmach.c

ppc_SOURCES=    \
    ..\ppcmach.c

alpha_SOURCES=  \
    ..\alpmach.c

UMTYPE=windows

!include ..\..\common.src

MIPS_FLAGS=-DNO_TRACE_BIT -DTARGET_MIPS
386_FLAGS=-DWOW -DTARGET_i386
ALPHA_FLAGS=-DNO_TRACE_BIT -DTARGET_ALPHA
PPC_FLAGS=-DNO_TRACE_BIT -DTARGET_PPC

C_DEFINES = $(C_DEFINES) -DDWORDLONG=ULONGLONG

INCLUDES=..;..\..\osdebug\include;..\..\osdebug

CONDITIONAL_INCLUDES=odp.h win32dm.h

TARGETLIBS= \
    $(BASEDIR)\public\sdk\lib\*\kernel32.lib \
    $(BASEDIR)\public\sdk\lib\*\user32.lib   \
    $(BASEDIR)\public\sdk\lib\*\vdmdbg.lib   \
    $(BASEDIR)\public\sdk\lib\*\advapi32.lib \
    $(BASEDIR)\public\sdk\lib\*\crashlib.lib \
!IF $(ALPHA)
    ..\..\em\p_alpha\obj\*\emalp.lib            \
!ENDIF
    $(MORE_LIBS)

NTTARGETFILES=

PRECOMPILED_INCLUDE=precomp.h
PRECOMPILED_PCH=precomp.pch
PRECOMPILED_OBJ=precomp.obj
