!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) 02-Nov-1993


Revision History:

!ENDIF

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

MAJORCOMP =net
MINORCOMP =msgsvc

TARGETNAME=msgsvc
TARGETPATH=obj
TARGETTYPE=DYNLINK
TARGETLIBS= \
            $(BASEDIR)\public\sdk\lib\*\kernel32.lib        \
            $(BASEDIR)\public\sdk\lib\*\advapi32.lib        \
            $(BASEDIR)\public\sdk\lib\*\user32.lib          \
            $(BASEDIR)\public\sdk\lib\*\netlib.lib          \
            $(BASEDIR)\public\sdk\lib\*\netapi32.lib        \
            $(BASEDIR)\public\sdk\lib\*\rpcrt4.lib          \
            $(BASEDIR)\public\sdk\lib\*\rpcndr.lib          \
            $(BASEDIR)\public\sdk\lib\*\rpcutil.lib

INCLUDES=.;..;..\..\..\inc;..\..\..\..\inc;..\..\..\api;..\..\..\..\windows\inc

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

SOURCES=    \
            apiutil.c   \
            data.c      \
            display.c   \
            fmtncbna.c  \
            grpmsngr.c  \
            heap.c      \
            msgapi.c    \
            meslog.c    \
            mesprint.c  \
            msginit.c   \
            msgmain.c   \
            msgnbios.c  \
            msgsec.c    \
            msgsvc.rc   \
            msgsvc_s.c  \
            servencb.c  \
            servenam.c  \
            sighandl.c  \
            smbcheck.c  \
            threads.c   \
            wakupsem.c


C_DEFINES=-DRPC_NO_WINDOWS_H

USE_CRTDLL=1

UMTYPE=windows

