2009-05-19 19:17:58 +04:00
|
|
|
# Makefile for qemu target independent devices.
|
|
|
|
|
|
|
|
include ../config-host.mak
|
2009-07-27 18:12:50 +04:00
|
|
|
include config.mak
|
2009-05-19 19:17:58 +04:00
|
|
|
include $(SRC_PATH)/rules.mak
|
|
|
|
|
|
|
|
.PHONY: all
|
|
|
|
|
|
|
|
VPATH=$(SRC_PATH):$(SRC_PATH)/hw
|
|
|
|
|
2009-08-03 16:46:23 +04:00
|
|
|
QEMU_CFLAGS+=-I.. -I$(SRC_PATH)/fpu
|
2009-05-19 19:17:58 +04:00
|
|
|
|
2009-06-25 02:07:59 +04:00
|
|
|
obj-y =
|
2009-08-10 23:30:24 +04:00
|
|
|
obj-y += virtio.o
|
2009-06-25 02:07:59 +04:00
|
|
|
obj-y += fw_cfg.o
|
|
|
|
obj-y += watchdog.o
|
|
|
|
obj-y += nand.o ecc.o
|
2009-05-19 19:17:58 +04:00
|
|
|
|
2009-06-25 02:07:59 +04:00
|
|
|
obj-y += m48t59.o escc.o
|
2009-05-21 19:54:36 +04:00
|
|
|
|
|
|
|
# SCSI layer
|
2009-06-25 02:07:59 +04:00
|
|
|
obj-y += lsi53c895a.o esp.o
|
2009-05-19 19:17:58 +04:00
|
|
|
|
2009-07-15 15:43:31 +04:00
|
|
|
obj-y += dma-helpers.o sysbus.o qdev-addr.o
|
2009-05-19 19:17:58 +04:00
|
|
|
|
|
|
|
all: $(HWLIB)
|
2009-05-25 21:54:53 +04:00
|
|
|
# Dummy command so that make thinks it has done something
|
|
|
|
@true
|
2009-05-19 19:17:58 +04:00
|
|
|
|
2009-06-25 02:07:59 +04:00
|
|
|
$(HWLIB): $(obj-y)
|
2009-05-19 19:17:58 +04:00
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -f *.o *.d *.a *~
|
|
|
|
|
|
|
|
# Include automatically generated dependency files
|
|
|
|
-include $(wildcard *.d */*.d)
|