]> git.proxmox.com Git - qemu.git/blame - Makefile.user
target-arm: remove T0 and T1
[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
5
6.PHONY: all
7
8VPATH=$(SRC_PATH)
9
10QEMU_CFLAGS+=-I..
11
12obj-y =
13obj-y += envlist.o path.o
14obj-y += tcg-runtime.o host-utils.o
15obj-y += cutils.o cache-utils.o
16
17all: libuser.a
18# Dummy command so that make thinks it has done something
19 @true
20
21libuser.a: $(obj-y)
22
23clean:
24 rm -f *.o *.d *.a *~
25
26# Include automatically generated dependency files
27-include $(wildcard *.d */*.d)