/[grub]/grub2/conf/powerpc-ieee1275.rmk
ViewVC logotype

Diff of /grub2/conf/powerpc-ieee1275.rmk

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.50 by okuji, Fri Nov 18 10:51:00 2005 UTC revision 1.51 by hollisb, Wed Nov 23 02:23:08 2005 UTC
# Line 21  grubof_symlist.c: $(addprefix include/gr Line 21  grubof_symlist.c: $(addprefix include/gr
21  kernel_syms.lst: $(addprefix include/grub/,$(grubof_HEADERS)) genkernsyms.sh  kernel_syms.lst: $(addprefix include/grub/,$(grubof_HEADERS)) genkernsyms.sh
22          sh $(srcdir)/genkernsyms.sh $(filter %h,$^) > $@          sh $(srcdir)/genkernsyms.sh $(filter %h,$^) > $@
23    
 # For the parser.  
 grub_script.tab.c grub_script.tab.h: normal/parser.y  
         $(YACC) -d -p grub_script_yy -b grub_script $(srcdir)/normal/parser.y  
   
24  # Programs  # Programs
25  pkgdata_PROGRAMS = grubof  pkgdata_PROGRAMS = grubof
26    
# Line 62  grub_emu_SOURCES = commands/boot.c comma Line 58  grub_emu_SOURCES = commands/boot.c comma
58    
59  grub_emu_LDFLAGS = $(LIBCURSES)  grub_emu_LDFLAGS = $(LIBCURSES)
60    
 grub_modules_init.lst: geninit.sh  
         (cd $(srcdir); grep -r --include="*.c" GRUB_MOD_INIT *) > $@  
   
 grub_modules_init.h: $(filter-out grub_emu_init.c,$(grub_emu_SOURCES)) geninitheader.sh grub_modules_init.lst  
         sh $(srcdir)/geninitheader.sh > $@  
   
 grub_emu_init.c: $(filter-out grub_emu_init.c,$(grub_emu_SOURCES)) geninit.sh grub_modules_init.lst grub_modules_init.h  
         sh $(srcdir)/geninit.sh $(filter %.c,$^) > $@  
   
61  grubof_SOURCES = kern/powerpc/ieee1275/crt0.S kern/powerpc/ieee1275/cmain.c \  grubof_SOURCES = kern/powerpc/ieee1275/crt0.S kern/powerpc/ieee1275/cmain.c \
62          kern/ieee1275/ieee1275.c kern/main.c kern/device.c              \          kern/ieee1275/ieee1275.c kern/main.c kern/device.c              \
63          kern/disk.c kern/dl.c kern/file.c kern/fs.c kern/err.c          \          kern/disk.c kern/dl.c kern/file.c kern/fs.c kern/err.c          \
# Line 94  sbin_SCRIPTS = grub-install Line 81  sbin_SCRIPTS = grub-install
81  grub_install_SOURCES = util/powerpc/ieee1275/grub-install.in  grub_install_SOURCES = util/powerpc/ieee1275/grub-install.in
82    
83  # Modules.  # Modules.
84  pkgdata_MODULES = _linux.mod linux.mod fat.mod ufs.mod ext2.mod minix.mod \  pkgdata_MODULES = halt.mod \
85          hfs.mod jfs.mod normal.mod hello.mod font.mod ls.mod \          _linux.mod \
86          boot.mod cmp.mod cat.mod terminal.mod fshelp.mod amiga.mod apple.mod \          linux.mod \
87          pc.mod suspend.mod loopback.mod help.mod reboot.mod halt.mod sun.mod \          normal.mod \
88          default.mod timeout.mod configfile.mod search.mod gzio.mod xfs.mod \          reboot.mod \
89          affs.mod sfs.mod test.mod acorn.mod          suspend.mod
   
 # For fshelp.mod.  
 fshelp_mod_SOURCES = fs/fshelp.c  
 fshelp_mod_CFLAGS = $(COMMON_CFLAGS)  
   
 # For fat.mod.  
 fat_mod_SOURCES = fs/fat.c  
 fat_mod_CFLAGS = $(COMMON_CFLAGS)  
   
 # For ext2.mod.  
 ext2_mod_SOURCES = fs/ext2.c  
 ext2_mod_CFLAGS = $(COMMON_CFLAGS)  
   
 # For ufs.mod.  
 ufs_mod_SOURCES = fs/ufs.c  
 ufs_mod_CFLAGS = $(COMMON_CFLAGS)  
   
 # For minix.mod.  
 minix_mod_SOURCES = fs/minix.c  
 minix_mod_CFLAGS = $(COMMON_CFLAGS)  
   
 # For hfs.mod.  
 hfs_mod_SOURCES = fs/hfs.c  
 hfs_mod_CFLAGS = $(COMMON_CFLAGS)  
   
 # For jfs.mod.  
 jfs_mod_SOURCES = fs/jfs.c  
 jfs_mod_CFLAGS = $(COMMON_CFLAGS)  
   
 # For iso9660.mod.  
 iso9660_mod_SOURCES = fs/iso9660.c  
 iso9660_mod_CFLAGS = $(COMMON_CFLAGS)  
   
 # For xfs.mod.  
 xfs_mod_SOURCES = fs/xfs.c  
 xfs_mod_CFLAGS = $(COMMON_CFLAGS)  
   
 # For affs.mod.  
 affs_mod_SOURCES = fs/affs.c  
 affs_mod_CFLAGS = $(COMMON_CFLAGS)  
   
 # For sfs.mod.  
 sfs_mod_SOURCES = fs/sfs.c  
 sfs_mod_CFLAGS = $(COMMON_CFLAGS)  
90    
91  # For _linux.mod.  # For _linux.mod.
92  _linux_mod_SOURCES = loader/powerpc/ieee1275/linux.c  _linux_mod_SOURCES = loader/powerpc/ieee1275/linux.c
# Line 162  normal_mod_SOURCES = normal/arg.c normal Line 105  normal_mod_SOURCES = normal/arg.c normal
105  normal_mod_CFLAGS = $(COMMON_CFLAGS)  normal_mod_CFLAGS = $(COMMON_CFLAGS)
106  normal_mod_ASFLAGS = $(COMMON_ASFLAGS)  normal_mod_ASFLAGS = $(COMMON_ASFLAGS)
107    
 # For hello.mod.  
 hello_mod_SOURCES = hello/hello.c  
 hello_mod_CFLAGS = $(COMMON_CFLAGS)  
   
 # For boot.mod.  
 boot_mod_SOURCES = commands/boot.c  
 boot_mod_CFLAGS = $(COMMON_CFLAGS)  
   
 # For terminal.mod.  
 terminal_mod_SOURCES = commands/terminal.c  
 terminal_mod_CFLAGS = $(COMMON_CFLAGS)  
   
 # For ls.mod.  
 ls_mod_SOURCES = commands/ls.c  
 ls_mod_CFLAGS = $(COMMON_CFLAGS)  
   
 # For cmp.mod.  
 cmp_mod_SOURCES = commands/cmp.c  
 cmp_mod_CFLAGS = $(COMMON_CFLAGS)  
   
 # For cat.mod.  
 cat_mod_SOURCES = commands/cat.c  
 cat_mod_CFLAGS = $(COMMON_CFLAGS)  
   
 # For font.mod.  
 font_mod_SOURCES = font/manager.c  
 font_mod_CFLAGS = $(COMMON_CFLAGS)  
   
 # For amiga.mod  
 amiga_mod_SOURCES = partmap/amiga.c  
 amiga_mod_CFLAGS = $(COMMON_CFLAGS)  
   
 # For apple.mod  
 apple_mod_SOURCES = partmap/apple.c  
 apple_mod_CFLAGS = $(COMMON_CFLAGS)  
   
 # For pc.mod  
 pc_mod_SOURCES = partmap/pc.c  
 pc_mod_CFLAGS = $(COMMON_CFLAGS)  
   
 # For sun.mod  
 sun_mod_SOURCES = partmap/sun.c  
 sun_mod_CFLAGS = $(COMMON_CFLAGS)  
   
 # For acorn.mod  
 acorn_mod_SOURCES = partmap/acorn.c  
 acorn_mod_CFLAGS = $(COMMON_CFLAGS)  
   
 # For loopback.mod  
 loopback_mod_SOURCES = disk/loopback.c  
 loopback_mod_CFLAGS = $(COMMON_CFLAGS)  
   
108  # For suspend.mod  # For suspend.mod
109  suspend_mod_SOURCES = commands/ieee1275/suspend.c  suspend_mod_SOURCES = commands/ieee1275/suspend.c
110  suspend_mod_CFLAGS = $(COMMON_CFLAGS)  suspend_mod_CFLAGS = $(COMMON_CFLAGS)
# Line 226  reboot_mod_CFLAGS = $(COMMON_CFLAGS) Line 117  reboot_mod_CFLAGS = $(COMMON_CFLAGS)
117  halt_mod_SOURCES = commands/ieee1275/halt.c  halt_mod_SOURCES = commands/ieee1275/halt.c
118  halt_mod_CFLAGS = $(COMMON_CFLAGS)  halt_mod_CFLAGS = $(COMMON_CFLAGS)
119    
120  # For help.mod.  include $(srcdir)/conf/common.mk
 help_mod_SOURCES = commands/help.c  
 help_mod_CFLAGS = $(COMMON_CFLAGS)  
   
 # For default.mod  
 default_mod_SOURCES = commands/default.c  
 default_mod_CFLAGS =  $(COMMON_CFLAGS)  
   
 # For timeout.mod  
 timeout_mod_SOURCES = commands/timeout.c  
 timeout_mod_CFLAGS =  $(COMMON_CFLAGS)  
   
 # For configfile.mod  
 configfile_mod_SOURCES = commands/configfile.c  
 configfile_mod_CFLAGS = $(COMMON_CFLAGS)  
   
 # For search.mod.  
 search_mod_SOURCES = commands/search.c  
 search_mod_CFLAGS = $(COMMON_CFLAGS)  
   
 # For gzio.mod.  
 gzio_mod_SOURCES = io/gzio.c  
 gzio_mod_CFLAGS = $(COMMON_CFLAGS)  
   
 # For test.mod.  
 test_mod_SOURCES = commands/test.c  
 test_mod_CFLAGS = $(COMMON_CFLAGS)  

Legend:
Removed from v.1.50  
changed lines
  Added in v.1.51

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26