Statistics
| Branch: | Revision:

root / Makefile.hw @ a74cdab4

History | View | Annotate | Download (510 Bytes)

1
# Makefile for qemu target independent devices.
2

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

    
8
.PHONY: all
9

    
10
$(call set-vpath, $(SRC_PATH):$(SRC_PATH)/hw)
11

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

    
14
include $(SRC_PATH)/Makefile.objs
15

    
16
all: $(hw-obj-y)
17
# Dummy command so that make thinks it has done something
18
	@true
19

    
20
clean:
21
	rm -f *.o */*.o *.d */*.d *.a */*.a *~ */*~
22

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