f79572cdd6
Embedding loadenv module into grub-emu * conf/i386-pc.rmk (grub_emu_SOURCES): add lib/envblk.c and commands/loadenv.c * conf/i386-coreboot.rmk (grub_emu_SOURCES): Likewise * conf/i386-efi.rmk (grub_emu_SOURCES): Likewise * conf/i386-ieee1275.rmk (grub_emu_SOURCES): Likewise * conf/powerpc-ieee1275.rmk (grub_emu_SOURCES): Likewise * conf/sparc64-ieee1275.rmk (grub_emu_SOURCES): Likewise * conf/x86_64-efi.rmk (grub_emu_SOURCES): Likewise
450 lines
15 KiB
Makefile
450 lines
15 KiB
Makefile
# -*- makefile -*-
|
|
|
|
GRUB_KERNEL_MACHINE_LINK_ADDR = 0x8200
|
|
|
|
COMMON_ASFLAGS = -nostdinc -fno-builtin -m32
|
|
COMMON_CFLAGS = -fno-builtin -mrtd -mregparm=3 -m32
|
|
COMMON_LDFLAGS = -m32 -nostdlib
|
|
|
|
# Used by various components. These rules need to precede them.
|
|
script/sh/lexer.c_DEPENDENCIES = grub_script.tab.h
|
|
|
|
# Images.
|
|
pkglib_IMAGES = boot.img cdboot.img diskboot.img kernel.img lnxboot.img \
|
|
pxeboot.img
|
|
|
|
# For boot.img.
|
|
boot_img_SOURCES = boot/i386/pc/boot.S
|
|
boot_img_ASFLAGS = $(COMMON_ASFLAGS)
|
|
boot_img_LDFLAGS = $(COMMON_LDFLAGS) $(TARGET_IMG_LDFLAGS)7C00
|
|
boot_img_FORMAT = binary
|
|
|
|
# For pxeboot.img
|
|
pxeboot_img_SOURCES = boot/i386/pc/pxeboot.S
|
|
pxeboot_img_ASFLAGS = $(COMMON_ASFLAGS)
|
|
pxeboot_img_LDFLAGS = $(COMMON_LDFLAGS) $(TARGET_IMG_LDFLAGS)7C00
|
|
pxeboot_img_FORMAT = binary
|
|
|
|
# For diskboot.img.
|
|
diskboot_img_SOURCES = boot/i386/pc/diskboot.S
|
|
diskboot_img_ASFLAGS = $(COMMON_ASFLAGS)
|
|
diskboot_img_LDFLAGS = $(COMMON_LDFLAGS) $(TARGET_IMG_LDFLAGS)8000
|
|
diskboot_img_FORMAT = binary
|
|
|
|
# For lnxboot.img.
|
|
lnxboot_img_SOURCES = boot/i386/pc/lnxboot.S
|
|
lnxboot_img_ASFLAGS = $(COMMON_ASFLAGS)
|
|
lnxboot_img_LDFLAGS = $(COMMON_LDFLAGS) $(TARGET_IMG_LDFLAGS)6000
|
|
lnxboot_img_FORMAT = binary
|
|
|
|
# For cdboot.img.
|
|
cdboot_img_SOURCES = boot/i386/pc/cdboot.S
|
|
cdboot_img_ASFLAGS = $(COMMON_ASFLAGS)
|
|
cdboot_img_LDFLAGS = $(COMMON_LDFLAGS) $(TARGET_IMG_LDFLAGS)7C00
|
|
cdboot_img_FORMAT = binary
|
|
|
|
# For kernel.img.
|
|
kernel_img_SOURCES = kern/i386/pc/startup.S \
|
|
kern/i386/misc.S \
|
|
kern/main.c kern/device.c \
|
|
kern/disk.c kern/dl.c kern/file.c kern/fs.c kern/err.c \
|
|
kern/misc.c kern/mm.c kern/reader.c kern/term.c \
|
|
kern/rescue_parser.c kern/rescue_reader.c \
|
|
kern/time.c kern/list.c kern/handler.c kern/command.c kern/corecmd.c \
|
|
kern/$(target_cpu)/dl.c kern/i386/pc/init.c kern/i386/pc/mmap.c \
|
|
kern/parser.c kern/partition.c \
|
|
kern/i386/tsc.c kern/i386/pit.c \
|
|
kern/generic/rtc_get_time_ms.c \
|
|
kern/generic/millisleep.c \
|
|
kern/env.c \
|
|
term/i386/pc/console.c term/i386/vga_common.c \
|
|
symlist.c
|
|
kernel_img_HEADERS = boot.h cache.h device.h disk.h dl.h elf.h elfload.h \
|
|
env.h err.h file.h fs.h kernel.h loader.h misc.h mm.h net.h parser.h \
|
|
partition.h msdos_partition.h reader.h symbol.h term.h time.h types.h \
|
|
machine/biosdisk.h machine/boot.h machine/console.h machine/init.h \
|
|
machine/memory.h machine/loader.h machine/vga.h machine/vbe.h \
|
|
machine/kernel.h machine/pxe.h i386/pit.h list.h handler.h command.h
|
|
kernel_img_CFLAGS = $(COMMON_CFLAGS) $(TARGET_IMG_CFLAGS)
|
|
kernel_img_ASFLAGS = $(COMMON_ASFLAGS)
|
|
kernel_img_LDFLAGS = $(COMMON_LDFLAGS) $(TARGET_IMG_LDFLAGS)$(GRUB_KERNEL_MACHINE_LINK_ADDR) $(COMMON_CFLAGS)
|
|
kernel_img_FORMAT = binary
|
|
|
|
MOSTLYCLEANFILES += symlist.c kernel_syms.lst
|
|
DEFSYMFILES += kernel_syms.lst
|
|
|
|
symlist.c: $(addprefix include/grub/,$(kernel_img_HEADERS)) config.h gensymlist.sh
|
|
/bin/sh gensymlist.sh $(filter %.h,$^) > $@ || (rm -f $@; exit 1)
|
|
|
|
kernel_syms.lst: $(addprefix include/grub/,$(kernel_img_HEADERS)) config.h genkernsyms.sh
|
|
/bin/sh genkernsyms.sh $(filter %.h,$^) > $@ || (rm -f $@; exit 1)
|
|
|
|
# Utilities.
|
|
bin_UTILITIES = grub-mkimage
|
|
sbin_UTILITIES = grub-setup grub-mkdevicemap
|
|
ifeq ($(enable_grub_emu), yes)
|
|
sbin_UTILITIES += grub-emu
|
|
endif
|
|
|
|
# For grub-mkimage.
|
|
grub_mkimage_SOURCES = util/i386/pc/grub-mkimage.c util/misc.c \
|
|
util/resolve.c lib/LzmaEnc.c lib/LzFind.c
|
|
grub_mkimage_CFLAGS = -DGRUB_KERNEL_MACHINE_LINK_ADDR=$(GRUB_KERNEL_MACHINE_LINK_ADDR)
|
|
util/i386/pc/grub-mkimage.c_DEPENDENCIES = Makefile
|
|
|
|
# For grub-setup.
|
|
util/i386/pc/grub-setup.c_DEPENDENCIES = grub_setup_init.h
|
|
grub_setup_SOURCES = util/i386/pc/grub-setup.c util/hostdisk.c \
|
|
util/misc.c util/getroot.c kern/device.c kern/disk.c \
|
|
kern/err.c kern/misc.c kern/parser.c kern/partition.c \
|
|
kern/file.c kern/fs.c kern/env.c fs/fshelp.c \
|
|
\
|
|
fs/affs.c fs/cpio.c fs/ext2.c fs/fat.c fs/hfs.c \
|
|
fs/hfsplus.c fs/iso9660.c fs/udf.c fs/jfs.c fs/minix.c \
|
|
fs/ntfs.c fs/ntfscomp.c fs/reiserfs.c fs/sfs.c \
|
|
fs/ufs.c fs/ufs2.c fs/xfs.c fs/afs.c fs/afs_be.c \
|
|
fs/befs.c fs/befs_be.c fs/tar.c \
|
|
\
|
|
partmap/msdos.c partmap/gpt.c \
|
|
\
|
|
disk/raid.c disk/mdraid_linux.c disk/lvm.c \
|
|
util/raid.c util/lvm.c \
|
|
grub_setup_init.c
|
|
|
|
# For grub-mkdevicemap.
|
|
grub_mkdevicemap_SOURCES = util/grub-mkdevicemap.c util/deviceiter.c \
|
|
util/devicemap.c util/misc.c
|
|
|
|
# For grub-emu.
|
|
util/grub-emu.c_DEPENDENCIES = grub_emu_init.h
|
|
grub_emu_SOURCES = commands/minicmd.c commands/cat.c commands/cmp.c \
|
|
commands/configfile.c commands/echo.c commands/help.c \
|
|
commands/handler.c commands/ls.c commands/test.c \
|
|
commands/search.c commands/blocklist.c commands/hexdump.c \
|
|
lib/hexdump.c commands/i386/pc/halt.c commands/reboot.c \
|
|
lib/envblk.c commands/loadenv.c \
|
|
commands/gptsync.c commands/probe.c commands/xnu_uuid.c \
|
|
commands/i386/cpuid.c \
|
|
commands/password.c commands/keystatus.c \
|
|
disk/host.c disk/loopback.c disk/scsi.c \
|
|
fs/fshelp.c \
|
|
\
|
|
io/gzio.c \
|
|
kern/device.c kern/disk.c kern/dl.c kern/elf.c kern/env.c \
|
|
kern/err.c kern/list.c kern/handler.c \
|
|
kern/command.c kern/corecmd.c commands/extcmd.c kern/file.c \
|
|
kern/fs.c commands/boot.c kern/main.c kern/misc.c kern/parser.c \
|
|
kern/partition.c kern/reader.c kern/term.c \
|
|
kern/rescue_reader.c kern/rescue_parser.c \
|
|
lib/arg.c normal/cmdline.c normal/datetime.c normal/misc.c \
|
|
normal/handler.c normal/auth.c normal/autofs.c \
|
|
normal/completion.c normal/main.c normal/color.c \
|
|
normal/menu.c normal/menu_entry.c normal/menu_viewer.c \
|
|
normal/menu_text.c \
|
|
script/sh/main.c script/sh/execute.c script/sh/function.c \
|
|
script/sh/lexer.c script/sh/script.c grub_script.tab.c \
|
|
partmap/amiga.c partmap/apple.c partmap/msdos.c partmap/sun.c \
|
|
partmap/acorn.c partmap/gpt.c \
|
|
\
|
|
fs/affs.c fs/cpio.c fs/fat.c fs/ext2.c fs/hfs.c \
|
|
fs/hfsplus.c fs/iso9660.c fs/udf.c fs/jfs.c fs/minix.c \
|
|
fs/ntfs.c fs/ntfscomp.c fs/reiserfs.c fs/sfs.c \
|
|
fs/ufs.c fs/ufs2.c fs/xfs.c fs/afs.c fs/afs_be.c \
|
|
fs/befs.c fs/befs_be.c fs/tar.c \
|
|
\
|
|
util/console.c util/hostfs.c util/grub-emu.c util/misc.c \
|
|
util/hostdisk.c util/getroot.c \
|
|
\
|
|
disk/raid.c disk/raid5_recover.c disk/raid6_recover.c \
|
|
disk/mdraid_linux.c disk/dmraid_nvidia.c disk/lvm.c \
|
|
commands/parttool.c parttool/msdospart.c \
|
|
grub_emu_init.c
|
|
|
|
grub_emu_LDFLAGS = $(LIBCURSES)
|
|
|
|
ifeq ($(enable_grub_emu_usb), yes)
|
|
grub_emu_SOURCES += disk/usbms.c util/usb.c bus/usb/usb.c \
|
|
commands/usbtest.c
|
|
grub_emu_LDFLAGS += $(LIBCURSES) $(LIBUSB)
|
|
endif
|
|
|
|
# Scripts.
|
|
sbin_SCRIPTS = grub-install
|
|
bin_SCRIPTS = grub-mkrescue
|
|
|
|
# For grub-install.
|
|
grub_install_SOURCES = util/i386/pc/grub-install.in
|
|
|
|
# For grub-mkrescue.
|
|
grub_mkrescue_SOURCES = util/i386/pc/grub-mkrescue.in
|
|
|
|
pkglib_MODULES = biosdisk.mod chain.mod \
|
|
multiboot.mod reboot.mod halt.mod \
|
|
vbe.mod vbetest.mod vbeinfo.mod play.mod serial.mod \
|
|
ata.mod vga.mod memdisk.mod pci.mod lspci.mod \
|
|
aout.mod bsd.mod pxe.mod pxecmd.mod datetime.mod date.mod \
|
|
datehook.mod lsmmap.mod ata_pthru.mod hdparm.mod \
|
|
usb.mod uhci.mod ohci.mod usbtest.mod usbms.mod usb_keyboard.mod \
|
|
efiemu.mod mmap.mod acpi.mod drivemap.mod
|
|
|
|
# For boot.mod.
|
|
pkglib_MODULES += boot.mod
|
|
boot_mod_SOURCES = commands/boot.c lib/i386/pc/biosnum.c
|
|
boot_mod_CFLAGS = $(COMMON_CFLAGS)
|
|
boot_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
|
|
|
# For drivemap.mod.
|
|
drivemap_mod_SOURCES = commands/i386/pc/drivemap.c \
|
|
commands/i386/pc/drivemap_int13h.S
|
|
drivemap_mod_ASFLAGS = $(COMMON_ASFLAGS)
|
|
drivemap_mod_CFLAGS = $(COMMON_CFLAGS)
|
|
drivemap_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
|
|
|
# For efiemu.mod.
|
|
efiemu_mod_SOURCES = efiemu/main.c efiemu/i386/loadcore32.c \
|
|
efiemu/i386/loadcore64.c efiemu/i386/pc/cfgtables.c \
|
|
efiemu/mm.c efiemu/loadcore_common.c efiemu/symbols.c \
|
|
efiemu/loadcore32.c efiemu/loadcore64.c \
|
|
efiemu/prepare32.c efiemu/prepare64.c efiemu/pnvram.c \
|
|
efiemu/i386/coredetect.c
|
|
efiemu_mod_CFLAGS = $(COMMON_CFLAGS)
|
|
efiemu_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
|
|
|
# For acpi.mod.
|
|
acpi_mod_SOURCES = commands/acpi.c commands/i386/pc/acpi.c
|
|
acpi_mod_CFLAGS = $(COMMON_CFLAGS)
|
|
acpi_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
|
|
|
# For mmap.mod.
|
|
mmap_mod_SOURCES = mmap/mmap.c mmap/i386/uppermem.c mmap/i386/mmap.c \
|
|
mmap/i386/pc/mmap.c mmap/i386/pc/mmap_helper.S
|
|
mmap_mod_CFLAGS = $(COMMON_CFLAGS)
|
|
mmap_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
|
mmap_mod_ASFLAGS = $(COMMON_ASFLAGS)
|
|
|
|
# For biosdisk.mod.
|
|
biosdisk_mod_SOURCES = disk/i386/pc/biosdisk.c
|
|
biosdisk_mod_CFLAGS = $(COMMON_CFLAGS)
|
|
biosdisk_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
|
|
|
# For chain.mod.
|
|
chain_mod_SOURCES = loader/i386/pc/chainloader.c
|
|
chain_mod_CFLAGS = $(COMMON_CFLAGS)
|
|
chain_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
|
|
|
pkglib_MODULES += linux16.mod
|
|
linux16_mod_SOURCES = loader/i386/pc/linux.c
|
|
linux16_mod_CFLAGS = $(COMMON_CFLAGS)
|
|
linux16_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
|
|
|
pkglib_MODULES += linux.mod
|
|
linux_mod_SOURCES = loader/i386/linux.c
|
|
linux_mod_CFLAGS = $(COMMON_CFLAGS)
|
|
linux_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
|
|
|
pkglib_MODULES += xnu.mod
|
|
xnu_mod_SOURCES = loader/xnu_resume.c loader/i386/xnu.c loader/i386/pc/xnu.c\
|
|
loader/macho.c loader/xnu.c loader/i386/xnu_helper.S
|
|
xnu_mod_CFLAGS = $(COMMON_CFLAGS)
|
|
xnu_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
|
xnu_mod_ASFLAGS = $(COMMON_ASFLAGS)
|
|
|
|
# For reboot.mod.
|
|
reboot_mod_SOURCES = commands/reboot.c
|
|
reboot_mod_CFLAGS = $(COMMON_CFLAGS)
|
|
reboot_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
|
|
|
# For halt.mod.
|
|
halt_mod_SOURCES = commands/i386/pc/halt.c
|
|
halt_mod_CFLAGS = $(COMMON_CFLAGS)
|
|
halt_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
|
|
|
# For serial.mod.
|
|
serial_mod_SOURCES = term/i386/pc/serial.c
|
|
serial_mod_CFLAGS = $(COMMON_CFLAGS)
|
|
serial_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
|
|
|
# For multiboot.mod.
|
|
multiboot_mod_SOURCES = loader/i386/multiboot.c \
|
|
loader/i386/multiboot_helper.S \
|
|
loader/i386/pc/multiboot2.c \
|
|
loader/multiboot2.c \
|
|
loader/multiboot_loader.c
|
|
multiboot_mod_CFLAGS = $(COMMON_CFLAGS)
|
|
multiboot_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
|
multiboot_mod_ASFLAGS = $(COMMON_ASFLAGS)
|
|
|
|
# For vbe.mod.
|
|
vbe_mod_SOURCES = video/i386/pc/vbe.c
|
|
vbe_mod_CFLAGS = $(COMMON_CFLAGS)
|
|
vbe_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
|
|
|
# For vbeinfo.mod.
|
|
vbeinfo_mod_SOURCES = commands/i386/pc/vbeinfo.c
|
|
vbeinfo_mod_CFLAGS = $(COMMON_CFLAGS)
|
|
vbeinfo_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
|
|
|
# For vbetest.mod.
|
|
vbetest_mod_SOURCES = commands/i386/pc/vbetest.c
|
|
vbetest_mod_CFLAGS = $(COMMON_CFLAGS)
|
|
vbetest_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
|
|
|
# For play.mod.
|
|
play_mod_SOURCES = commands/i386/pc/play.c
|
|
play_mod_CFLAGS = $(COMMON_CFLAGS)
|
|
play_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
|
|
|
# For ata.mod.
|
|
ata_mod_SOURCES = disk/ata.c
|
|
ata_mod_CFLAGS = $(COMMON_CFLAGS)
|
|
ata_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
|
|
|
# For vga.mod.
|
|
vga_mod_SOURCES = term/i386/pc/vga.c
|
|
vga_mod_CFLAGS = $(COMMON_CFLAGS)
|
|
vga_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
|
|
|
# For memdisk.mod.
|
|
memdisk_mod_SOURCES = disk/memdisk.c
|
|
memdisk_mod_CFLAGS = $(COMMON_CFLAGS)
|
|
memdisk_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
|
|
|
# For pci.mod
|
|
pci_mod_SOURCES = bus/pci.c
|
|
pci_mod_CFLAGS = $(COMMON_CFLAGS)
|
|
pci_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
|
|
|
# For lspci.mod
|
|
lspci_mod_SOURCES = commands/lspci.c
|
|
lspci_mod_CFLAGS = $(COMMON_CFLAGS)
|
|
lspci_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
|
|
|
# For aout.mod
|
|
aout_mod_SOURCES = loader/aout.c
|
|
aout_mod_CFLAGS = $(COMMON_CFLAGS)
|
|
aout_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
|
|
|
# For bsd.mod
|
|
bsd_mod_SOURCES = loader/i386/bsd.c loader/i386/bsd32.c loader/i386/bsd64.c loader/i386/bsd_helper.S loader/i386/bsd_trampoline.S
|
|
bsd_mod_CFLAGS = $(COMMON_CFLAGS)
|
|
bsd_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
|
bsd_mod_ASFLAGS = $(COMMON_ASFLAGS)
|
|
|
|
# For usb.mod
|
|
usb_mod_SOURCES = bus/usb/usb.c bus/usb/usbtrans.c bus/usb/usbhub.c
|
|
usb_mod_CFLAGS = $(COMMON_CFLAGS)
|
|
usb_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
|
|
|
# For usbtest.mod
|
|
usbtest_mod_SOURCES = commands/usbtest.c
|
|
usbtest_mod_CFLAGS = $(COMMON_CFLAGS)
|
|
usbtest_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
|
|
|
# For uhci.mod
|
|
uhci_mod_SOURCES = bus/usb/uhci.c
|
|
uhci_mod_CFLAGS = $(COMMON_CFLAGS)
|
|
uhci_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
|
|
|
# For ohci.mod
|
|
ohci_mod_SOURCES = bus/usb/ohci.c
|
|
ohci_mod_CFLAGS = $(COMMON_CFLAGS)
|
|
ohci_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
|
|
|
# For usbms.mod
|
|
usbms_mod_SOURCES = disk/usbms.c
|
|
usbms_mod_CFLAGS = $(COMMON_CFLAGS)
|
|
usbms_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
|
|
|
# For usb_keyboard.mod
|
|
usb_keyboard_mod_SOURCES = term/usb_keyboard.c
|
|
usb_keyboard_mod_CFLAGS = $(COMMON_CFLAGS)
|
|
usb_keyboard_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
|
|
|
# For pxe.mod
|
|
pxe_mod_SOURCES = fs/i386/pc/pxe.c
|
|
pxe_mod_CFLAGS = $(COMMON_CFLAGS)
|
|
pxe_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
|
|
|
# For pxecmd.mod
|
|
pxecmd_mod_SOURCES = commands/i386/pc/pxecmd.c
|
|
pxecmd_mod_CFLAGS = $(COMMON_CFLAGS)
|
|
pxecmd_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
|
|
|
# For datetime.mod
|
|
datetime_mod_SOURCES = lib/i386/datetime.c
|
|
datetime_mod_CFLAGS = $(COMMON_CFLAGS)
|
|
datetime_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
|
|
|
# For date.mod
|
|
date_mod_SOURCES = commands/date.c
|
|
date_mod_CFLAGS = $(COMMON_CFLAGS)
|
|
date_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
|
|
|
# For datehook.mod
|
|
datehook_mod_SOURCES = hook/datehook.c
|
|
datehook_mod_CFLAGS = $(COMMON_CFLAGS)
|
|
datehook_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
|
|
|
# For lsmmap.mod
|
|
lsmmap_mod_SOURCES = commands/lsmmap.c
|
|
lsmmap_mod_CFLAGS = $(COMMON_CFLAGS)
|
|
lsmmap_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
|
|
|
# For ata_pthru.mod.
|
|
ata_pthru_mod_SOURCES = disk/ata_pthru.c
|
|
ata_pthru_mod_CFLAGS = $(COMMON_CFLAGS)
|
|
ata_pthru_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
|
|
|
# For hdparm.mod.
|
|
hdparm_mod_SOURCES = commands/hdparm.c lib/hexdump.c
|
|
hdparm_mod_CFLAGS = $(COMMON_CFLAGS)
|
|
hdparm_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
|
|
|
ifeq ($(enable_efiemu), yes)
|
|
|
|
efiemu32.o: efiemu/runtime/efiemu.c $(TARGET_OBJ2ELF)
|
|
-rm -f $@
|
|
ifeq ($(TARGET_APPLE_CC), 1)
|
|
-rm -f $@.bin
|
|
$(TARGET_CC) -c -m32 -DELF32 -DAPPLE_CC -o $@.bin -Wall -Werror $< -nostdlib -O2 -I$(srcdir)/efiemu/runtime -I$(srcdir)/include -Iinclude
|
|
$(OBJCONV) -felf32 -nu -nd $@.bin $@
|
|
-rm -f $@.bin
|
|
else
|
|
$(TARGET_CC) -c -m32 -DELF32 -o $@ -Wall -Werror $< -nostdlib -O2 -I$(srcdir)/efiemu/runtime -I$(srcdir)/include -Iinclude
|
|
if test ! -z $(TARGET_OBJ2ELF); then ./$(TARGET_OBJ2ELF) $@ || (rm -f $@; exit 1); fi
|
|
endif
|
|
|
|
efiemu64_c.o: efiemu/runtime/efiemu.c
|
|
ifeq ($(TARGET_APPLE_CC), 1)
|
|
$(TARGET_CC) -c -m64 -DAPPLE_CC=1 -DELF64 -o $@ -Wall -Werror $< -nostdlib -mno-red-zone -O2 -I$(srcdir)/efiemu/runtime -I$(srcdir)/include -Iinclude
|
|
else
|
|
$(TARGET_CC) -c -m64 -DELF64 -o $@ -Wall -Werror $< -nostdlib -mcmodel=large -mno-red-zone -O2 -I$(srcdir)/efiemu/runtime -I$(srcdir)/include -Iinclude
|
|
endif
|
|
|
|
efiemu64_s.o: efiemu/runtime/efiemu.S
|
|
-rm -f $@
|
|
ifeq ($(TARGET_APPLE_CC), 1)
|
|
$(TARGET_CC) -c -m64 -DAPPLE_CC=1 -DELF64 -o $@ -Wall -Werror $< -nostdlib -mno-red-zone -O2 -I$(srcdir)/efiemu/runtime -I$(srcdir)/include -Iinclude
|
|
else
|
|
$(TARGET_CC) -c -m64 -DELF64 -o $@ -Wall -Werror $< -nostdlib -mcmodel=large -mno-red-zone -O2 -I$(srcdir)/efiemu/runtime -I$(srcdir)/include -Iinclude
|
|
endif
|
|
|
|
efiemu64.o: efiemu64_c.o efiemu64_s.o $(TARGET_OBJ2ELF)
|
|
-rm -f $@
|
|
ifeq ($(TARGET_APPLE_CC), 1)
|
|
-rm -f $@.bin
|
|
$(TARGET_CC) -m64 -o $@.bin -Wl,-r $^ -nostdlib
|
|
$(OBJCONV) -felf64 -nu -nd $@.bin $@
|
|
-rm -f $@.bin
|
|
else
|
|
$(TARGET_CC) -m64 -o $@ -Wl,-r $^ -nostdlib
|
|
if test ! -z $(TARGET_OBJ2ELF); then ./$(TARGET_OBJ2ELF) $@ || (rm -f $@; exit 1); fi
|
|
endif
|
|
|
|
CLEANFILES += efiemu32.o efiemu64.o efiemu64_c.o efiemu64_s.o
|
|
pkglib_DATA += efiemu32.o efiemu64.o
|
|
|
|
endif
|
|
|
|
include $(srcdir)/conf/i386.mk
|
|
include $(srcdir)/conf/common.mk
|