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

    Dan Lafferty (danl) 7-Sept-1991

    Terence Kwan (terryk) 03-Jan-1992
    build a lib instead of a dll

    Terence Kwan (terryk) 10-Jan-1992
    added testapp stuff


Revision History:

!ENDIF

TARGETNAME=mpr
TARGETPATH=$(BASEDIR)\public\sdk\lib
TARGETTYPE=DYNLINK
DLLENTRY=MprDllInit

TARGETLIBS=  \
        $(BASEDIR)\public\sdk\lib\*\kernel32.lib    \
        $(BASEDIR)\public\sdk\lib\*\advapi32.lib    \
        $(BASEDIR)\public\sdk\lib\*\user32.lib
INCLUDES=.;..\..\inc

SOURCES=  \
          mpr.rc     \
          mprprop.c  \
          mprinit.c  \
          mpransi.c  \
          strbuf.c   \
          enum.c     \
          lasterr.c  \
          support.c  \
          connect.c  \
          userdir.c  \
          mprreg.c   \
          credman.c  \
          connify.c  \
          mprui.c    \
          uniname.c


!IFNDEF DISABLE_NET_UNICODE
UNICODE=1
NET_C_DEFINES=-DUNICODE
!ENDIF

!IFDEF MPR_DEBUG
C_DEFINES= -DSECRET_DEFINE=1
!ENDIF



UMTYPE= console
UMTEST= mprtest
UMLIBS= \
    $(BASEDIR)\public\sdk\lib\*\mpr.lib    \
    $(BASEDIR)\public\sdk\lib\*\ntdll.lib

