Blue Swirl | add1615 | 2009-09-27 16:26:02 +0000 | [diff] [blame] | 1 | # Makefile for qemu target independent user files. |
| 2 | |
| 3 | include ../config-host.mak |
| 4 | include $(SRC_PATH)/rules.mak |
| 5 | |
| 6 | .PHONY: all |
| 7 | |
| 8 | VPATH=$(SRC_PATH) |
| 9 | |
| 10 | QEMU_CFLAGS+=-I.. |
| 11 | |
| 12 | obj-y = |
| 13 | obj-y += envlist.o path.o |
| 14 | obj-y += tcg-runtime.o host-utils.o |
| 15 | obj-y += cutils.o cache-utils.o |
| 16 | |
| 17 | all: libuser.a |
| 18 | # Dummy command so that make thinks it has done something |
| 19 | @true |
| 20 | |
| 21 | libuser.a: $(obj-y) |
| 22 | |
| 23 | clean: |
| 24 | rm -f *.o *.d *.a *~ |
| 25 | |
| 26 | # Include automatically generated dependency files |
| 27 | -include $(wildcard *.d */*.d) |