Statistics
| Branch: | Revision:

root / Makefile.user @ c48c6522

History | View | Annotate | Download (512 Bytes)

1 add16157 Blue Swirl
# Makefile for qemu target independent user files.
2 add16157 Blue Swirl
3 add16157 Blue Swirl
include ../config-host.mak
4 add16157 Blue Swirl
include $(SRC_PATH)/rules.mak
5 58faa1a6 Blue Swirl
-include config.mak
6 add16157 Blue Swirl
7 add16157 Blue Swirl
.PHONY: all
8 add16157 Blue Swirl
9 076d2471 Paolo Bonzini
$(call set-vpath, $(SRC_PATH))
10 add16157 Blue Swirl
11 add16157 Blue Swirl
QEMU_CFLAGS+=-I..
12 ce008c1f Andreas Färber
QEMU_CFLAGS += -I$(SRC_PATH)/include
13 add16157 Blue Swirl
14 0e8c9214 Andreas Färber
include $(SRC_PATH)/Makefile.objs
15 add16157 Blue Swirl
16 0e8c9214 Andreas Färber
all: $(user-obj-y)
17 add16157 Blue Swirl
# Dummy command so that make thinks it has done something
18 add16157 Blue Swirl
	@true
19 add16157 Blue Swirl
20 add16157 Blue Swirl
clean:
21 937b1258 Lluís Vilanova
	for d in . trace; do \
22 937b1258 Lluís Vilanova
	rm -f $$d/*.o $$d/*.d $$d/*.a $$d/*~; \
23 937b1258 Lluís Vilanova
	done
24 add16157 Blue Swirl
25 add16157 Blue Swirl
# Include automatically generated dependency files
26 add16157 Blue Swirl
-include $(wildcard *.d */*.d)