diff --git a/ChangeLog b/ChangeLog index 3f8c3b4c1..5ad4e1317 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,18 @@ +2008-02-24 Robert Millan + + * conf/i386-efi.rmk (normal/function.c_DEPENDENCIES) + (normal/lexer.c_DEPENDENCIES): New variables. + * conf/i386-ieee1275.rmk (normal/function.c_DEPENDENCIES) + (normal/lexer.c_DEPENDENCIES): Likewise. + * conf/i386-linuxbios.rmk (normal/function.c_DEPENDENCIES) + (normal/lexer.c_DEPENDENCIES): Likewise. + * conf/i386-pc.rmk (normal/function.c_DEPENDENCIES) + (normal/lexer.c_DEPENDENCIES): Likewise. + * conf/powerpc-ieee1275.rmk (normal/function.c_DEPENDENCIES) + (normal/lexer.c_DEPENDENCIES): Likewise. + * conf/sparc64-ieee1275.rmk (normal/function.c_DEPENDENCIES) + (normal/lexer.c_DEPENDENCIES): Likewise. + 2008-02-23 Robert Millan * partmap/gpt.c (grub_gpt_magic): Add `0x' qualifier to each member, diff --git a/conf/i386-efi.mk b/conf/i386-efi.mk index f4bdc69a2..b660be2e0 100644 --- a/conf/i386-efi.mk +++ b/conf/i386-efi.mk @@ -7,6 +7,8 @@ COMMON_LDFLAGS = -melf_i386 -nostdlib # Used by various components. These rules need to precede them. normal/execute.c_DEPENDENCIES = grub_script.tab.h normal/command.c_DEPENDENCIES = grub_script.tab.h +normal/function.c_DEPENDENCIES = grub_script.tab.h +normal/lexer.c_DEPENDENCIES = grub_script.tab.h # Utilities. bin_UTILITIES = grub-mkimage diff --git a/conf/i386-efi.rmk b/conf/i386-efi.rmk index ffba6128d..4ca5ef24c 100644 --- a/conf/i386-efi.rmk +++ b/conf/i386-efi.rmk @@ -7,6 +7,8 @@ COMMON_LDFLAGS = -melf_i386 -nostdlib # Used by various components. These rules need to precede them. normal/execute.c_DEPENDENCIES = grub_script.tab.h normal/command.c_DEPENDENCIES = grub_script.tab.h +normal/function.c_DEPENDENCIES = grub_script.tab.h +normal/lexer.c_DEPENDENCIES = grub_script.tab.h # Utilities. bin_UTILITIES = grub-mkimage diff --git a/conf/i386-ieee1275.mk b/conf/i386-ieee1275.mk index 712da9a97..b2ad54a6c 100644 --- a/conf/i386-ieee1275.mk +++ b/conf/i386-ieee1275.mk @@ -7,6 +7,8 @@ COMMON_LDFLAGS = -nostdlib -static -lgcc # Used by various components. These rules need to precede them. normal/execute.c_DEPENDENCIES = grub_script.tab.h normal/command.c_DEPENDENCIES = grub_script.tab.h +normal/function.c_DEPENDENCIES = grub_script.tab.h +normal/lexer.c_DEPENDENCIES = grub_script.tab.h # Images. pkglib_PROGRAMS = kernel.elf diff --git a/conf/i386-ieee1275.rmk b/conf/i386-ieee1275.rmk index 01e354879..46b2f44eb 100644 --- a/conf/i386-ieee1275.rmk +++ b/conf/i386-ieee1275.rmk @@ -7,6 +7,8 @@ COMMON_LDFLAGS = -nostdlib -static -lgcc # Used by various components. These rules need to precede them. normal/execute.c_DEPENDENCIES = grub_script.tab.h normal/command.c_DEPENDENCIES = grub_script.tab.h +normal/function.c_DEPENDENCIES = grub_script.tab.h +normal/lexer.c_DEPENDENCIES = grub_script.tab.h # Images. pkglib_PROGRAMS = kernel.elf diff --git a/conf/i386-linuxbios.mk b/conf/i386-linuxbios.mk index 7c7493a20..da0647268 100644 --- a/conf/i386-linuxbios.mk +++ b/conf/i386-linuxbios.mk @@ -7,6 +7,8 @@ COMMON_LDFLAGS = -nostdlib -static -lgcc # Used by various components. These rules need to precede them. normal/execute.c_DEPENDENCIES = grub_script.tab.h normal/command.c_DEPENDENCIES = grub_script.tab.h +normal/function.c_DEPENDENCIES = grub_script.tab.h +normal/lexer.c_DEPENDENCIES = grub_script.tab.h # Images. pkglib_PROGRAMS = kernel.elf diff --git a/conf/i386-linuxbios.rmk b/conf/i386-linuxbios.rmk index 5d40cb50e..67d05ec79 100644 --- a/conf/i386-linuxbios.rmk +++ b/conf/i386-linuxbios.rmk @@ -7,6 +7,8 @@ COMMON_LDFLAGS = -nostdlib -static -lgcc # Used by various components. These rules need to precede them. normal/execute.c_DEPENDENCIES = grub_script.tab.h normal/command.c_DEPENDENCIES = grub_script.tab.h +normal/function.c_DEPENDENCIES = grub_script.tab.h +normal/lexer.c_DEPENDENCIES = grub_script.tab.h # Images. pkglib_PROGRAMS = kernel.elf diff --git a/conf/i386-pc.mk b/conf/i386-pc.mk index cec315446..4e9361dda 100644 --- a/conf/i386-pc.mk +++ b/conf/i386-pc.mk @@ -9,6 +9,8 @@ COMMON_LDFLAGS = -m32 -nostdlib # Used by various components. These rules need to precede them. normal/execute.c_DEPENDENCIES = grub_script.tab.h normal/command.c_DEPENDENCIES = grub_script.tab.h +normal/function.c_DEPENDENCIES = grub_script.tab.h +normal/lexer.c_DEPENDENCIES = grub_script.tab.h # Images. pkglib_IMAGES = boot.img diskboot.img kernel.img pxeboot.img lnxboot.img \ diff --git a/conf/i386-pc.rmk b/conf/i386-pc.rmk index 1a0e54b9d..587df1bae 100644 --- a/conf/i386-pc.rmk +++ b/conf/i386-pc.rmk @@ -9,6 +9,8 @@ COMMON_LDFLAGS = -m32 -nostdlib # Used by various components. These rules need to precede them. normal/execute.c_DEPENDENCIES = grub_script.tab.h normal/command.c_DEPENDENCIES = grub_script.tab.h +normal/function.c_DEPENDENCIES = grub_script.tab.h +normal/lexer.c_DEPENDENCIES = grub_script.tab.h # Images. pkglib_IMAGES = boot.img diskboot.img kernel.img pxeboot.img lnxboot.img \ diff --git a/conf/powerpc-ieee1275.mk b/conf/powerpc-ieee1275.mk index e4459133c..7bdbac360 100644 --- a/conf/powerpc-ieee1275.mk +++ b/conf/powerpc-ieee1275.mk @@ -8,6 +8,8 @@ COMMON_LDFLAGS += -nostdlib # Used by various components. These rules need to precede them. normal/execute.c_DEPENDENCIES = grub_script.tab.h normal/command.c_DEPENDENCIES = grub_script.tab.h +normal/function.c_DEPENDENCIES = grub_script.tab.h +normal/lexer.c_DEPENDENCIES = grub_script.tab.h # Images. diff --git a/conf/powerpc-ieee1275.rmk b/conf/powerpc-ieee1275.rmk index f631c34a3..f9abb6ad5 100644 --- a/conf/powerpc-ieee1275.rmk +++ b/conf/powerpc-ieee1275.rmk @@ -8,6 +8,8 @@ COMMON_LDFLAGS += -nostdlib # Used by various components. These rules need to precede them. normal/execute.c_DEPENDENCIES = grub_script.tab.h normal/command.c_DEPENDENCIES = grub_script.tab.h +normal/function.c_DEPENDENCIES = grub_script.tab.h +normal/lexer.c_DEPENDENCIES = grub_script.tab.h # Images. diff --git a/conf/sparc64-ieee1275.mk b/conf/sparc64-ieee1275.mk index 5198cb730..4ad18dc97 100644 --- a/conf/sparc64-ieee1275.mk +++ b/conf/sparc64-ieee1275.mk @@ -8,6 +8,8 @@ COMMON_LDFLAGS = -melf64_sparc -nostdlib # Used by various components. These rules need to precede them. normal/execute.c_DEPENDENCIES = grub_script.tab.h normal/command.c_DEPENDENCIES = grub_script.tab.h +normal/function.c_DEPENDENCIES = grub_script.tab.h +normal/lexer.c_DEPENDENCIES = grub_script.tab.h # Images. diff --git a/conf/sparc64-ieee1275.rmk b/conf/sparc64-ieee1275.rmk index 1c4d2e864..ff0f4e34e 100644 --- a/conf/sparc64-ieee1275.rmk +++ b/conf/sparc64-ieee1275.rmk @@ -8,6 +8,8 @@ COMMON_LDFLAGS = -melf64_sparc -nostdlib # Used by various components. These rules need to precede them. normal/execute.c_DEPENDENCIES = grub_script.tab.h normal/command.c_DEPENDENCIES = grub_script.tab.h +normal/function.c_DEPENDENCIES = grub_script.tab.h +normal/lexer.c_DEPENDENCIES = grub_script.tab.h # Images.