Statistics
| Branch: | Revision:

root / Makefile.hw @ 9801c7b4

History | View | Annotate | Download (680 Bytes)

1
# Makefile for qemu target independent devices.
2

    
3
include ../config-host.mak
4
include config.mak
5
include $(SRC_PATH)/rules.mak
6

    
7
.PHONY: all
8

    
9
VPATH=$(SRC_PATH):$(SRC_PATH)/hw
10

    
11
QEMU_CFLAGS+=-I.. -I$(SRC_PATH)/fpu
12

    
13
obj-y =
14
obj-y += virtio.o
15
obj-y += fw_cfg.o
16
obj-y += watchdog.o
17
obj-y += nand.o ecc.o
18

    
19
obj-y += m48t59.o escc.o
20

    
21
# PCI watchdog devices
22
obj-y += wdt_i6300esb.o
23

    
24
# SCSI layer
25
obj-y += lsi53c895a.o esp.o
26

    
27
obj-y += dma-helpers.o sysbus.o qdev-addr.o isa-bus.o
28

    
29
all: $(HWLIB)
30
# Dummy command so that make thinks it has done something
31
	@true
32

    
33
$(HWLIB): $(obj-y)
34

    
35
clean:
36
	rm -f *.o *.d *.a *~
37

    
38
# Include automatically generated dependency files
39
-include $(wildcard *.d */*.d)