83 lines
1.6 KiB
Plaintext
83 lines
1.6 KiB
Plaintext
!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:
|
|
Created 27-Aug-96 by inateeg
|
|
|
|
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 = vrsreg
|
|
|
|
#
|
|
# Defines for common.inc
|
|
#
|
|
NOT_UNICODE = 1
|
|
|
|
#
|
|
# Include our common makefile
|
|
#
|
|
|
|
!include $(CCSHELL_DIR)\common.inc
|
|
|
|
|
|
#
|
|
# Other directives
|
|
#
|
|
|
|
#
|
|
# Common settings required by build.exe and makefile.def
|
|
#
|
|
|
|
TARGETNAME = vrsreg
|
|
TARGETPATH = obj
|
|
TARGETTYPE = PROGRAM
|
|
|
|
LINKLIBS = $(LIBRARY_PATH)\gdi32.lib \
|
|
$(LIBRARY_PATH)\kernel32.lib \
|
|
$(LIBRARY_PATH)\user32.lib \
|
|
$(LIBRARY_PATH)\advapi32.lib \
|
|
$(LIBRARY_PATH)\comctl32.lib \
|
|
$(LIBRARY_PATH)\shell32.lib \
|
|
$(LIBRARY_PATH)\uuid.lib \
|
|
$(LIBRARY_PATH)\ole32.lib \
|
|
$(LIBRARY_PATH)\oleaut32.lib \
|
|
$(LIBRARY_PATH)\wininet.lib \
|
|
$(LIBRARY_PATH)\libc.lib
|
|
|
|
|
|
#
|
|
# List of sources
|
|
#
|
|
|
|
SOURCES= \
|
|
..\vrsreg.cpp \
|
|
..\vrsreg.rc
|
|
|
|
UMTYPE=windows
|
|
UMENTRY=winmain
|
|
|
|
USE_INCREMENTAL_LINKING=1
|
|
|