From 1ad2134f914dfd4c8f92307c94c9a5a1e28f0059 Mon Sep 17 00:00:00 2001 From: Paul Brook Date: Tue, 19 May 2009 16:17:58 +0100 Subject: Hardware convenience library The only target dependency for most hardware is sizeof(target_phys_addr_t). Build these files into a convenience library, and use that instead of building for every target. Remove and poison various target specific macros to avoid bogus target dependencies creeping back in. Big/Little endian is not handled because devices should not know or care about this to start with. Signed-off-by: Paul Brook --- Makefile.hw | 36 ++++++++++++++++++++++++++++++++++++ 1 file changed, 36 insertions(+) create mode 100644 Makefile.hw (limited to 'Makefile.hw') diff --git a/Makefile.hw b/Makefile.hw new file mode 100644 index 0000000000..a8c71740eb --- /dev/null +++ b/Makefile.hw @@ -0,0 +1,36 @@ +# Makefile for qemu target independent devices. + +include config.mak +include ../config-host.mak +include $(SRC_PATH)/rules.mak + +.PHONY: all + +VPATH=$(SRC_PATH):$(SRC_PATH)/hw + +CFLAGS += $(OS_CFLAGS) $(ARCH_CFLAGS) +LDFLAGS += $(OS_LDFLAGS) $(ARCH_LDFLAGS) + +CPPFLAGS += -I. -I$(SRC_PATH) -MMD -MP -MT $@ +CPPFLAGS += -D_GNU_SOURCE -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE +CPPFLAGS+=-I$(SRC_PATH)/fpu + +OBJS= +OBJS+= virtio.o virtio-pci.o +OBJS+= fw_cfg.o +OBJS+= watchdog.o +OBJS+= nand.o ecc.o + +OBJS+= m48t59.o + +OBJS+= dma-helpers.o sysbus.o + +all: $(HWLIB) + +$(HWLIB): $(OBJS) + +clean: + rm -f *.o *.d *.a *~ + +# Include automatically generated dependency files +-include $(wildcard *.d */*.d) -- cgit v1.2.1