]> git.proxmox.com Git - qemu.git/blame - Makefile.user
Merge remote-tracking branch 'riku/linux-user-for-upstream' into staging
[qemu.git] / Makefile.user
CommitLineData
add16157
BS
1# Makefile for qemu target independent user files.
2
3include ../config-host.mak
4include $(SRC_PATH)/rules.mak
58faa1a6 5-include config.mak
add16157
BS
6
7.PHONY: all
8
076d2471 9$(call set-vpath, $(SRC_PATH))
add16157
BS
10
11QEMU_CFLAGS+=-I..
ce008c1f 12QEMU_CFLAGS += -I$(SRC_PATH)/include
add16157 13
0e8c9214 14include $(SRC_PATH)/Makefile.objs
add16157 15
0e8c9214 16all: $(user-obj-y)
add16157
BS
17# Dummy command so that make thinks it has done something
18 @true
19
add16157 20clean:
937b1258
LV
21 for d in . trace; do \
22 rm -f $$d/*.o $$d/*.d $$d/*.a $$d/*~; \
23 done
add16157
BS
24
25# Include automatically generated dependency files
26-include $(wildcard *.d */*.d)