Annotation of qemu/Makefile.user, revision 1.1.1.2
1.1 root 1: # Makefile for qemu target independent user files.
2:
3: include ../config-host.mak
4: include $(SRC_PATH)/rules.mak
1.1.1.2 ! root 5: -include config.mak
1.1 root 6:
7: .PHONY: all
8:
1.1.1.2 ! root 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
! 13: vpath %.c %.h $(SRC_PATH)
1.1 root 14:
15: QEMU_CFLAGS+=-I..
16:
17: obj-y =
18: obj-y += envlist.o path.o
19: obj-y += tcg-runtime.o host-utils.o
20: obj-y += cutils.o cache-utils.o
21:
22: all: libuser.a
23: # Dummy command so that make thinks it has done something
24: @true
25:
26: libuser.a: $(obj-y)
27:
28: clean:
29: rm -f *.o *.d *.a *~
30:
31: # Include automatically generated dependency files
32: -include $(wildcard *.d */*.d)
unix.superglobalmegacorp.com