mirror of https://github.com/tongzx/nt5src
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.
29 lines
502 B
29 lines
502 B
MAJORCOMP=ntos
|
|
MINORCOMP=efi
|
|
|
|
EFI_ROOT=$(PROJECT_ROOT)\efiutil\sdk
|
|
TARGETNAME=nvrboot
|
|
TARGETPATH=obj
|
|
TARGETTYPE=LIBRARY
|
|
|
|
CFLAGS=-entry:InitializeNvrutilApplication
|
|
|
|
C_DEFINES=$(C_DEFINES) -DEFI_DEBUG=0
|
|
|
|
!if $(IA64)
|
|
INCLUDES=$(EFI_ROOT)\inc;$(EFI_ROOT)\inc\ia64
|
|
!else
|
|
INCLUDES=$(EFI_ROOT)\inc;$(EFI_ROOT)\inc\ia32
|
|
386_STDCALL=0
|
|
!endif
|
|
|
|
|
|
SOURCES=nvrboot.c \
|
|
global.c \
|
|
protocol.c \
|
|
nvrio.c \
|
|
console.c \
|
|
nvrboot.rc \
|
|
savrstor.c
|
|
|
|
NTTARGETFILES=$(O)\$(TARGETNAME).efi
|