automake commit without merge history

This commit is contained in:
BVK Chaitanya 2010-05-06 11:34:04 +05:30
parent 265d68cd10
commit 8c41176882
810 changed files with 4980 additions and 2508 deletions

View file

@ -0,0 +1,17 @@
#ifndef GRUB_MACHINE_EMU
#error "This source is only meant for grub-emu platform"
#endif
#if GRUB_CPU_I386
#elif GRUB_CPU_X86_64
#elif GRUB_CPU_SPARC64
#include "../sparc64/cache.S"
#elif GRUB_CPU_MIPS
#include "../mips/cache.S"
#elif GRUB_CPU_MIPSEL
#include "../mips/cache.S"
#elif GRUB_CPU_POWERPC
#include "../powerpc/cache.S"
#else
#error "No target cpu type is defined"
#endif