46 lines
723 B
Plaintext
46 lines
723 B
Plaintext
|
|
||
|
!IF 0
|
||
|
|
||
|
Copyright (c) 1989 Microsoft Corporation
|
||
|
|
||
|
Module Name:
|
||
|
|
||
|
sources
|
||
|
|
||
|
Abstract:
|
||
|
|
||
|
The bindrop directory is a drop point for binaries
|
||
|
(dll, lib, exe) that are not built, but need to be
|
||
|
binplaced for WinPE.
|
||
|
|
||
|
Author:
|
||
|
|
||
|
Vijay Jayaseelan (vijayj@microsoft.com)
|
||
|
|
||
|
!ENDIF
|
||
|
|
||
|
TARGETNAME=
|
||
|
TARGETTYPE=NOTARGET
|
||
|
TARGETPATH=
|
||
|
|
||
|
SOURCES=
|
||
|
|
||
|
BINPLACE_PLACEFILE=$(PROJECT_ROOT)\ntsetup\opktools\placefil.txt
|
||
|
|
||
|
# makefile.def will binplace any file listed in the MISCFILES macro.
|
||
|
|
||
|
MISCFILES = x86\oscdimg.exe \
|
||
|
sam \
|
||
|
sam.log \
|
||
|
security \
|
||
|
security.log \
|
||
|
software.log \
|
||
|
BuildOptionalComponents.vbs \
|
||
|
winpe.bmp
|
||
|
|
||
|
!if $(WIN64)
|
||
|
!else
|
||
|
MISCFILES = $(MISCFILES) \
|
||
|
x86\etfsboot.com
|
||
|
!endif
|