f75172d9e7
Fix parallel builds with grub-emu. Based on earlier commit for grub-probe and grub-setup. * conf/i386-pc.rmk (grub-emu_DEPENDENCIES): Renamed to ... (util/grub-emu.c_DEPENDENCIES): ... this. * conf/i386-efi.rmk (grub-emu_DEPENDENCIES): Renamed to ... (util/grub-emu.c_DEPENDENCIES): ... this. * conf/i386-linuxbios.rmk (grub-emu_DEPENDENCIES): Renamed to ... (util/grub-emu.c_DEPENDENCIES): ... this. * conf/i386-ieee1275.rmk (grub-emu_DEPENDENCIES): Renamed to ... (util/grub-emu.c_DEPENDENCIES): ... this. * conf/powerpc-ieee1275.rmk (grub-emu_DEPENDENCIES): Renamed to ... (util/grub-emu.c_DEPENDENCIES): ... this.
171 lines
5.7 KiB
Makefile
171 lines
5.7 KiB
Makefile
|
|
# -*- makefile -*-
|
|
|
|
COMMON_ASFLAGS = -nostdinc -D__ASSEMBLY__
|
|
COMMON_CFLAGS = -ffreestanding -msoft-float
|
|
COMMON_LDFLAGS += -nostdlib
|
|
|
|
# Images.
|
|
|
|
MOSTLYCLEANFILES += kernel_elf_symlist.c kernel_syms.lst
|
|
DEFSYMFILES += kernel_syms.lst
|
|
|
|
kernel_elf_HEADERS = arg.h boot.h cache.h device.h disk.h dl.h elf.h elfload.h \
|
|
env.h err.h file.h fs.h kernel.h misc.h mm.h net.h parser.h rescue.h \
|
|
symbol.h term.h time.h types.h powerpc/libgcc.h loader.h partition.h \
|
|
pc_partition.h ieee1275/ieee1275.h machine/kernel.h
|
|
|
|
kernel_elf_symlist.c: $(addprefix include/grub/,$(kernel_elf_HEADERS)) config.h gensymlist.sh
|
|
/bin/sh gensymlist.sh $(filter %.h,$^) > $@ || (rm -f $@; exit 1)
|
|
|
|
kernel_syms.lst: $(addprefix include/grub/,$(kernel_elf_HEADERS)) config.h genkernsyms.sh
|
|
/bin/sh genkernsyms.sh $(filter %.h,$^) > $@ || (rm -f $@; exit 1)
|
|
|
|
# Programs
|
|
pkglib_PROGRAMS = kernel.elf
|
|
|
|
# Utilities.
|
|
bin_UTILITIES = grub-mkimage
|
|
sbin_UTILITIES = grub-mkdevicemap grub-probe
|
|
ifeq ($(enable_grub_emu), yes)
|
|
sbin_UTILITIES += grub-emu
|
|
endif
|
|
|
|
# For grub-mkimage.
|
|
grub_mkimage_SOURCES = util/elf/grub-mkimage.c util/misc.c \
|
|
util/resolve.c
|
|
|
|
# For grub-mkdevicemap.
|
|
grub_mkdevicemap_SOURCES = util/grub-mkdevicemap.c util/misc.c \
|
|
util/ieee1275/get_disk_name.c
|
|
|
|
# For grub-probe.
|
|
util/grub-probe.c_DEPENDENCIES = grub_probe_init.h
|
|
grub_probe_SOURCES = util/grub-probe.c \
|
|
util/biosdisk.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 \
|
|
\
|
|
fs/affs.c fs/cpio.c fs/ext2.c fs/fat.c fs/hfs.c \
|
|
fs/hfsplus.c fs/iso9660.c fs/jfs.c fs/minix.c \
|
|
fs/ntfs.c fs/ntfscomp.c fs/reiserfs.c fs/sfs.c \
|
|
fs/ufs.c fs/xfs.c \
|
|
\
|
|
partmap/pc.c partmap/apple.c partmap/gpt.c \
|
|
kern/fs.c kern/env.c fs/fshelp.c \
|
|
disk/lvm.c disk/raid.c grub_probe_init.c
|
|
|
|
# For grub-emu
|
|
util/grub-emu.c_DEPENDENCIES = grub_script.tab.c grub_script.tab.h \
|
|
grub_emu_init.h
|
|
grub_emu_SOURCES = commands/boot.c commands/cat.c commands/cmp.c \
|
|
commands/configfile.c commands/help.c \
|
|
commands/search.c commands/terminal.c commands/test.c \
|
|
commands/ls.c commands/blocklist.c commands/hexdump.c \
|
|
commands/ieee1275/halt.c commands/ieee1275/reboot.c \
|
|
disk/loopback.c \
|
|
\
|
|
fs/affs.c fs/cpio.c fs/ext2.c fs/fat.c fs/hfs.c \
|
|
fs/hfsplus.c fs/iso9660.c fs/jfs.c fs/minix.c \
|
|
fs/ntfs.c fs/ntfscomp.c fs/reiserfs.c fs/sfs.c \
|
|
fs/ufs.c fs/xfs.c \
|
|
\
|
|
io/gzio.c \
|
|
kern/device.c kern/disk.c kern/dl.c kern/elf.c kern/env.c \
|
|
kern/err.c kern/file.c kern/fs.c kern/loader.c kern/main.c \
|
|
kern/misc.c kern/parser.c kern/partition.c kern/rescue.c \
|
|
kern/term.c \
|
|
normal/arg.c normal/cmdline.c normal/command.c \
|
|
normal/completion.c normal/execute.c \
|
|
normal/function.c normal/lexer.c normal/main.c normal/menu.c \
|
|
normal/menu_entry.c normal/misc.c normal/script.c \
|
|
normal/color.c \
|
|
partmap/amiga.c partmap/apple.c partmap/pc.c partmap/sun.c \
|
|
partmap/acorn.c \
|
|
util/console.c util/hostfs.c util/grub-emu.c util/misc.c \
|
|
util/biosdisk.c util/getroot.c \
|
|
util/powerpc/ieee1275/misc.c grub_script.tab.c grub_emu_init.c
|
|
|
|
grub_emu_LDFLAGS = $(LIBCURSES)
|
|
|
|
kernel_elf_SOURCES = kern/powerpc/ieee1275/crt0.S kern/powerpc/ieee1275/cmain.c \
|
|
kern/ieee1275/ieee1275.c kern/main.c kern/device.c \
|
|
kern/disk.c kern/dl.c kern/err.c kern/file.c kern/fs.c \
|
|
kern/misc.c kern/mm.c kern/loader.c kern/rescue.c kern/term.c \
|
|
kern/powerpc/ieee1275/init.c term/ieee1275/ofconsole.c \
|
|
kern/powerpc/ieee1275/openfw.c disk/ieee1275/ofdisk.c \
|
|
kern/parser.c kern/partition.c kern/env.c kern/powerpc/dl.c \
|
|
kernel_elf_symlist.c kern/powerpc/cache.S
|
|
kernel_elf_HEADERS = grub/powerpc/ieee1275/ieee1275.h
|
|
kernel_elf_CFLAGS = $(COMMON_CFLAGS)
|
|
kernel_elf_ASFLAGS = $(COMMON_ASFLAGS)
|
|
kernel_elf_LDFLAGS = $(COMMON_LDFLAGS) -static-libgcc -lgcc \
|
|
-Wl,-N,-S,-Ttext,0x10000,-Bstatic
|
|
|
|
# Scripts.
|
|
sbin_SCRIPTS = grub-install
|
|
|
|
# For grub-install.
|
|
grub_install_SOURCES = util/powerpc/ieee1275/grub-install.in
|
|
|
|
# Modules.
|
|
pkglib_MODULES = halt.mod \
|
|
_linux.mod \
|
|
linux.mod \
|
|
normal.mod \
|
|
reboot.mod \
|
|
suspend.mod \
|
|
_multiboot.mod \
|
|
multiboot.mod
|
|
|
|
# For _linux.mod.
|
|
_linux_mod_SOURCES = loader/powerpc/ieee1275/linux.c
|
|
_linux_mod_CFLAGS = $(COMMON_CFLAGS)
|
|
_linux_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
|
|
|
# For linux.mod.
|
|
linux_mod_SOURCES = loader/powerpc/ieee1275/linux_normal.c
|
|
linux_mod_CFLAGS = $(COMMON_CFLAGS)
|
|
linux_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
|
|
|
# For normal.mod.
|
|
normal_mod_DEPENDENCIES = grub_script.tab.c grub_script.tab.h
|
|
normal_mod_SOURCES = normal/arg.c normal/cmdline.c normal/command.c \
|
|
normal/completion.c normal/execute.c \
|
|
normal/function.c normal/lexer.c normal/main.c normal/menu.c \
|
|
normal/menu_entry.c normal/misc.c grub_script.tab.c \
|
|
normal/script.c normal/powerpc/setjmp.S normal/color.c
|
|
normal_mod_CFLAGS = $(COMMON_CFLAGS)
|
|
normal_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
|
normal_mod_ASFLAGS = $(COMMON_ASFLAGS)
|
|
|
|
# For suspend.mod
|
|
suspend_mod_SOURCES = commands/ieee1275/suspend.c
|
|
suspend_mod_CFLAGS = $(COMMON_CFLAGS)
|
|
suspend_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
|
|
|
# For reboot.mod
|
|
reboot_mod_SOURCES = commands/ieee1275/reboot.c
|
|
reboot_mod_CFLAGS = $(COMMON_CFLAGS)
|
|
reboot_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
|
|
|
# For halt.mod
|
|
halt_mod_SOURCES = commands/ieee1275/halt.c
|
|
halt_mod_CFLAGS = $(COMMON_CFLAGS)
|
|
halt_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
|
|
|
# For _multiboot.mod
|
|
_multiboot_mod_SOURCES = loader/powerpc/ieee1275/multiboot2.c \
|
|
loader/multiboot2.c \
|
|
loader/multiboot_loader.c
|
|
_multiboot_mod_CFLAGS = $(COMMON_CFLAGS)
|
|
_multiboot_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
|
|
|
# For multiboot.mod
|
|
multiboot_mod_SOURCES = loader/multiboot_loader_normal.c
|
|
multiboot_mod_CFLAGS = $(COMMON_CFLAGS)
|
|
multiboot_mod_LDFLAGS = $(COMMON_LDFLAGS)
|
|
|
|
|
|
include $(srcdir)/conf/common.mk
|
|
|