Statistics
| Branch: | Revision:

root / Makefile.hw @ 2f28d2ff

History | View | Annotate | Download (559 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..
13
QEMU_CFLAGS += $(GLIB_CFLAGS)
14
QEMU_CFLAGS += -I$(SRC_PATH)/include
15

    
16
include $(SRC_PATH)/Makefile.objs
17

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

    
22
clean:
23
	rm -f *.o */*.o *.d */*.d *.a */*.a *~ */*~
24

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