!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


# 
# Defines for common.inc
#

NOT_UNICODE     = 1
USECXX_FLAG     = -Tp

#
# Include our common makefile
#

!include $(CCSHELL_DIR)\common.inc


#
# Other directives
#

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

TARGETNAME      = packager
TARGETPATH      = obj
TARGETTYPE      = PROGRAM
TARGETLIBS      = 

NTDLL_LIBS      = $(LIBRARY_PATH)\user32.lib

LINKLIBS        = $(LIBRARY_PATH)\gdi32.lib         \
                  $(LIBRARY_PATH)\kernel32.lib      \
                  $(LIBRARY_PATH)\user32.lib        \
                  $(LIBRARY_PATH)\advapi32.lib      \
                  $(LIBRARY_PATH)\libcmt.lib        \
                  $(LIBRARY_PATH)\comctl32.lib    \
                  $(CCSHELL_DIR)\ext\pack2\base\$(O)\pack2.lib \
		  $(CCSHELL_DIR)\lib\$(O)\shguid.lib     \
                  $(CCSHELL_DIR)\lib\$(O)\shguidp.lib    \
                  $(LIBRARY_PATH)\uuid.lib          \
                  $(CCSHELL_DIR)\lib\$(O)\stocklib.lib

# bugbug: scousens. 
#         @0 needed because ModuleEntry is _stdcall. 
#         On mips _stdcall is mapped to nothing
!if $(386)
UMENTRYABS      = ModuleEntry@0
!else
UMENTRYABS      = ModuleEntry
!endif

#
# List of sources
#

SOURCES         = ..\packager.c \
                  ..\packager.rc 


#
# Precompiled specs
#

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