!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

CCSHELL_DIR     = $(BASEDIR)\private\shell

# This supplemental library uses NT 5 definitions
WIN32_WINNT_VERSION = 0x0500
WIN32_WIN95_VERSION = 0x0500

!include $(CCSHELL_DIR)\cpls\arpctl\arpctl.inc
SOURCES_USED    = $(SOURCES_USED) $(CCSHELL_DIR)\cpls\arpctl\arpctl.inc

NO_BROWSER_FILE = 1

TARGETNAME    = arpctl
TARGETPATH    = obj
#TARGETPATHLIB = $(BASEDIR)\public\sdk\lib
TARGETTYPE    = DYNLINK
TARGETEXT     = dll

# Note:  Do >not< link to ntdll.  Win95 has an extremely minimal
#        implementation of ntdll.

TARGETLIBS      = $(SDK_LIB_PATH)\kernel32.lib      \
                  $(SDK_LIB_PATH)\gdi32.lib         \
                  $(SDK_LIB_PATH)\user32.lib        \
                  $(SDK_LIB_PATH)\advapi32.lib      \
                  $(SDK_LIB_PATH)\uuid.lib          \
                  $(SDK_LIB_PATH)\ole32.lib         \
                  $(SDK_LIB_PATH)\oleaut32.lib      \
                  $(SDK_LIB_PATH)\syssetup.lib      \
                  $(SDK_LIB_PATH)\shlwapi.lib       \
                  $(LIBRARY_PATH)\shlwapip.lib      \
                  $(SDK_LIB_PATH)\shell32p.lib      \
                  $(CCSHELL_DIR)\lib\$O\shguidp.lib \
                  $(CCSHELL_DIR)\lib\$O\shguid.lib  \
                  $(LIBRARY_PATH)\shdocvwp.lib      \
                  $(LIBRARY_PATH)\comctl32.lib      \
                  $(LIBRARY_PATH)\comctlp.lib       \
!if "$(FREEBUILD)" == "0" && $(386)
                  $(BASEDIR)\private\lib\chicago\*\shell32.w95  \
!else
                  $(BASEDIR)\private\lib\*\shell32.nt4  \
!endif
                  $(CCSHELL_DIR)\lib\$O\stock5.lib            \
                  $(CCSHELL_DIR)\lib\$O\stocklib.lib

# nt5api must be finished before this one
#SYNCHRONIZE_DRAIN=1

USE_IERT        = 1
USE_STATIC_ATL  = 1

DLLDEF          = $(O)\arpctl.def
DLLBASE         = 0x7F500000
DLLENTRY        = DllMain

# For RC to find shappmgr.TLB
INCLUDES        = $(SDK_LIB_PATH);$(INCLUDES)

# Include makefile.inc
NTTARGETFILES   =

PRECOMPILED_CXX = 1
PRECOMPILED_INCLUDE = priv.h


# Maintain the sources list in the alphabetical order

SOURCES         = \
		arpctl.cpp \
		arpctl.idl \
		arpctl.rc \
		cctl.cpp \
		stdafx.cpp

