]> git.proxmox.com Git - qemu.git/blame - Makefile.user
usb-uhci: symbolic names for pci registers
[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
299060a0
KS
9# Do not take %.o from $(SRC_PATH), only %.c and %.h
10# All %.o for user targets should be built with -fpie, when
11# configured with --enable-user-pie, so we don't want to
12# take %.o from $(SRC_PATH), since they built without -fpie
13vpath %.c %.h $(SRC_PATH)
add16157
BS
14
15QEMU_CFLAGS+=-I..
16
17obj-y =
18obj-y += envlist.o path.o
19obj-y += tcg-runtime.o host-utils.o
20obj-y += cutils.o cache-utils.o
21
22all: libuser.a
23# Dummy command so that make thinks it has done something
24 @true
25
26libuser.a: $(obj-y)
27
28clean:
29 rm -f *.o *.d *.a *~
30
31# Include automatically generated dependency files
32-include $(wildcard *.d */*.d)