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


# 
# Cross-compiler macros for unique naming
#

MAJORCOMP       = shell
MINORCOMP       = packager


#
# Include our common makefile
#

!include $(CCSHELL_DIR)\common.inc

#
# Common settings required by build.exe and makefile.def
#

TARGETNAME      = packager
TARGETPATH      = obj
TARGETTYPE      = DYNLINK

!IF $(ALPHA)
USE_NTDLL       = 1
!ELSE
USE_NOLIBS      = 1
!ENDIF

!if $(IA64) || $(AXP64)
USE_LIBCMT      = 1
!else
USE_IERT        = 1
!endif

TARGETLIBS      = $(LIBRARY_PATH)\gdi32.lib		\
                  $(LIBRARY_PATH)\user32.lib		\
                  $(LIBRARY_PATH)\kernel32.lib		\
		  $(LIBRARY_PATH)\ole32.lib		\
                  $(LIBRARY_PATH)\uuid.lib		\
                  $(LIBRARY_PATH)\shell32.lib		\
                  $(LIBRARY_PATH)\shell32p.lib          \
		  $(LIBRARY_PATH)\comctl32.lib	        \
                  $(LIBRARY_PATH)\advapi32.lib		\
		  $(LIBRARY_PATH)\shlwapi.lib	        \
		  $(LIBRARY_PATH)\shlwapip.lib	        \
                  $(CCSHELL_DIR)\lib\$(O)\stocklib.lib	\
		  $(CCSHELL_DIR)\lib\$(O)\shguid.lib    \
		  $(CCSHELL_DIR)\lib\$(O)\stocklib.lib


DLLDEF          = $(O)\pack2.def
DLLBASE         = 0x71300000

DLLENTRY        = DllMain

#
# List of sources
#

SOURCES         = ..\pack2.rc			\
		  ..\packwiz.cpp		\
                  ..\pack2.cpp			\
                  ..\ioleobj.cpp		\
		  ..\idataobj.cpp		\
		  ..\iviewobj.cpp		\
		  ..\iperstor.cpp		\
                  ..\iperfile.cpp               \
		  ..\iadvsink.cpp		\
		  ..\irunobj.cpp		\
                  ..\debug.c			\
		  ..\pack2cls.cpp		\
		  ..\packutil.cpp	



#
# Precompiled specs
#

PRECOMPILED_INCLUDE = ..\priv.h
PRECOMPILED_PCH = priv.pch
PRECOMPILED_OBJ = priv.obj
