You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
768 B
45 lines
768 B
|
|
!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 ([email protected])
|
|
|
|
!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
|