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

    Steve Wood (stevewo) 12-Apr-1989

Revision History:

!ENDIF

#
# The MAJORCOMP and MINORCOMP variables are defined
# so that $(MAJORCOMP)$(MINORCOMP)filename can be used in
# cross compiling to provide unique filenames in a flat namespace.
#

MAJORCOMP=mcd32
MINORCOMP=mcdclient

#
# The TARGETNAME variable is defined by the developer.  It is the name of
# the target (component) that is being built by this makefile.  It
# should NOT include any path or file extension information.
#

TARGETNAME=mcd32
TARGETPATH=$(BASEDIR)\public\sdk\lib
TARGETTYPE=DYNLINK

# Make sure the component libs are built first

SYNCHRONIZE_DRAIN = 1

TARGETLIBS= \
           $(BASEDIR)\public\sdk\lib\*\kernel32.lib    \
           $(BASEDIR)\public\sdk\lib\*\advapi32.lib    \
           $(BASEDIR)\public\sdk\lib\*\gdi32p.lib      \
           $(BASEDIR)\public\sdk\lib\*\glu32.lib       \
           $(BASEDIR)\public\sdk\lib\*\dciman32.lib    \
           $(BASEDIR)\public\sdk\lib\*\user32.lib

#LINKLIBS= \
#           $(BASEDIR)\public\sdk\lib\*\mcd.lib

DLLBASE=@$(BASEDIR)\PUBLIC\SDK\LIB\coffbase.txt,_CFREE
DLLENTRY=McdDllInitialize

#
# The INCLUDES variable specifies any include paths that are specific to
# this source directory.  Separate multiple directory paths with single
# semicolons.  Relative path specifications are okay.
#

INCLUDES = ..\inc

#
# Turn off direct imporation for GDI and OpenGL APIs
#
# _CLIENTSIDE_ is defined for client implementaions (WinNT and Win95)
#

C_DEFINES=$(C_DEFINES) -D"WIN32"

USE_CRTDLL=1

!IFNDEF MSC_WARNING_LEVEL
MSC_WARNING_LEVEL = -W3
!ENDIF
MSC_WARNING_LEVEL = $(MSC_WARNING_LEVEL) -WX

#NTPROFILEINPUT=yes

SOURCES=debug.c     \
        dllinit.c   \
        mcd.c       \
        mcd.rc

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