diff options
Diffstat (limited to 'roms/u-boot-sam460ex/drivers/bios_emulator/Makefile')
-rw-r--r-- | roms/u-boot-sam460ex/drivers/bios_emulator/Makefile | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/roms/u-boot-sam460ex/drivers/bios_emulator/Makefile b/roms/u-boot-sam460ex/drivers/bios_emulator/Makefile new file mode 100644 index 000000000..feba4da75 --- /dev/null +++ b/roms/u-boot-sam460ex/drivers/bios_emulator/Makefile @@ -0,0 +1,39 @@ +include $(TOPDIR)/config.mk + +LIB := $(obj)libatibiosemu.a + +X86DIR = x86emu + +$(shell mkdir -p $(obj)$(X86DIR)) + +COBJS-$(CONFIG_BIOSEMU) = atibios.o biosemu.o besys.o bios.o \ + $(X86DIR)/decode.o \ + $(X86DIR)/ops2.o \ + $(X86DIR)/ops.o \ + $(X86DIR)/prim_ops.o \ + $(X86DIR)/sys.o \ + $(X86DIR)/debug.o + +COBJS := $(COBJS-y) +SRCS := $(COBJS:.o=.c) +OBJS := $(addprefix $(obj),$(COBJS)) + +EXTRA_CFLAGS += -I. -I./include -I$(TOPDIR)/include \ + -D__PPC__ -D__BIG_ENDIAN__ + +CFLAGS += $(EXTRA_CFLAGS) +HOSTCFLAGS += $(EXTRA_CFLAGS) +CPPFLAGS += $(EXTRA_CFLAGS) + +all: $(LIB) + +$(LIB): $(obj).depend $(OBJS) + $(AR) $(ARFLAGS) $@ $(OBJS) + +######################################################################### + +include $(SRCTREE)/rules.mk + +sinclude $(obj).depend + +######################################################################### |