Source code of Windows XP (NT5)
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.
 
 
 
 
 
 

44 lines
646 B

!IFNDEF LANGUAGE
LANGUAGE=usa
!ENDIF
EFI_ROOT=$(PROJECT_ROOT)\efiutil\sdk
!if $(IA64)
LIBSRC=sal64
MACH=IA64
!else
LIBSRC=nt32
MACH=x86
!endif
OBJS=$(O)\launcher.obj \
$(O)\launcher.res
EFI_LIBS=$(EFI_ROOT)\build\$(LIBSRC)\output\lib\lib.lib
$(O)\link.rsp : makefile.inc
type << > $@
-subsystem:EFI_APPLICATION
-driver
-map
-machine:$(MACH)
-debug:full
-last:.rdata
-last:.pdata
-last:.comment
-base:0x1040000
-entry:EfiMain
-ignore:4049,4001
-nodefaultlib
-opt:noicf
$(LINK_LIB_IGNORE_FLAG)
$(EFI_LIBS)
$(OBJS)
<<NOKEEP
$(O)\$(TARGETNAME).efi: $(OBJS) makefile.inc $(O)\link.rsp
-link -out:$@ @$(O)\link.rsp