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.
41 lines
654 B
41 lines
654 B
!IFNDEF LANGUAGE
|
|
LANGUAGE=usa
|
|
!ENDIF
|
|
|
|
!if $(IA64)
|
|
LIBSRC=sal64
|
|
MACH=IA64
|
|
!else
|
|
LIBSRC=nt32
|
|
MACH=x86
|
|
!endif
|
|
|
|
OBJS=$(O)\efintldr.obj \
|
|
$(O)\utils.obj \
|
|
$(O)\menu.obj
|
|
|
|
EFI_LIBS=$(EFI_SOURCE)\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
|
|
|