⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 makefile

📁 xen 3.2.2 源码
💻
字号:
## Makefile## Leendert van Doorn, leendert@watson.ibm.com# Copyright (c) 2005, International Business Machines Corporation.## This program is free software; you can redistribute it and/or modify it# under the terms and conditions of the GNU General Public License,# version 2, as published by the Free Software Foundation.## This program is distributed in the hope it will be useful, but WITHOUT# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or# FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for# more details.## You should have received a copy of the GNU General Public License along with# this program; if not, write to the Free Software Foundation, Inc., 59 Temple# Place - Suite 330, Boston, MA 02111-1307 USA.#override XEN_TARGET_ARCH = x86_32XEN_ROOT = ../../..CFLAGS := -I$(XEN_ROOT)/tools/libxc -I.include $(XEN_ROOT)/tools/Rules.mk# The HVM loader is started in 32-bit mode at the address below:LOADADDR = 0x100000# Disable PIE/SSP if GCC supports them. They can break us.CFLAGS  += $(call cc-option,$(CC),-nopie,)CFLAGS  += $(call cc-option,$(CC),-fno-stack-protector,)CFLAGS  += $(call cc-option,$(CC),-fno-stack-protector-all,)CFLAGS  += -fno-builtin -O2 -msoft-floatSRCS = hvmloader.c mp_tables.c util.c smbios.c 32bitbios_support.cOBJS = $(patsubst %.c,%.o,$(SRCS)).PHONY: allall: hvmloaderhvmloader: roms.h acpi/acpi.a $(SRCS)	$(CC) $(CFLAGS) -c $(SRCS)	$(LD) $(LDFLAGS_DIRECT) -N -Ttext $(LOADADDR) -o hvmloader.tmp $(OBJS) acpi/acpi.a	$(OBJCOPY) hvmloader.tmp hvmloader	rm -f hvmloader.tmp.PHONY: acpi/acpi.aacpi/acpi.a:	$(MAKE) -C acpiroms.h:	../rombios/BIOS-bochs-latest ../vgabios/VGABIOS-lgpl-latest.bin ../vgabios/VGABIOS-lgpl-latest.cirrus.bin ../vmxassist/vmxassist.bin ../etherboot/eb-rtl8139.zrom.h	sh ./mkhex rombios ../rombios/BIOS-bochs-latest > roms.h	sh ./mkhex vgabios_stdvga ../vgabios/VGABIOS-lgpl-latest.bin >> roms.h	sh ./mkhex vgabios_cirrusvga ../vgabios/VGABIOS-lgpl-latest.cirrus.bin >> roms.h	sh ./mkhex vmxassist ../vmxassist/vmxassist.bin >> roms.h	cat ../etherboot/eb-rtl8139.zrom.h >> roms.h.PHONY: cleanclean:	rm -f roms.h acpi.h	rm -f hvmloader hvmloader.tmp *.o	$(MAKE) -C acpi clean

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -