Statistics
| Branch: | Revision:

root / Makefile.user @ dd4b2659

History | View | Annotate | Download (478 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 add16157 Blue Swirl
6 add16157 Blue Swirl
.PHONY: all
7 add16157 Blue Swirl
8 add16157 Blue Swirl
VPATH=$(SRC_PATH)
9 add16157 Blue Swirl
10 add16157 Blue Swirl
QEMU_CFLAGS+=-I..
11 add16157 Blue Swirl
12 add16157 Blue Swirl
obj-y =
13 add16157 Blue Swirl
obj-y += envlist.o path.o
14 add16157 Blue Swirl
obj-y += tcg-runtime.o host-utils.o
15 add16157 Blue Swirl
obj-y += cutils.o cache-utils.o
16 add16157 Blue Swirl
17 add16157 Blue Swirl
all: libuser.a
18 add16157 Blue Swirl
# Dummy command so that make thinks it has done something
19 add16157 Blue Swirl
	@true
20 add16157 Blue Swirl
21 add16157 Blue Swirl
libuser.a: $(obj-y)
22 add16157 Blue Swirl
23 add16157 Blue Swirl
clean:
24 add16157 Blue Swirl
	rm -f *.o *.d *.a *~
25 add16157 Blue Swirl
26 add16157 Blue Swirl
# Include automatically generated dependency files
27 add16157 Blue Swirl
-include $(wildcard *.d */*.d)