|
Lines 31-36
PROGS+=$(QEMU_PROGW)
Link Here
|
| 31 |
endif |
31 |
endif |
| 32 |
STPFILES= |
32 |
STPFILES= |
| 33 |
|
33 |
|
|
|
34 |
ifdef CONFIG_LINUX_USER |
| 35 |
PROGS+=$(QEMU_PROG)-binfmt-wrapper |
| 36 |
endif |
| 37 |
|
| 34 |
config-target.h: config-target.h-timestamp |
38 |
config-target.h: config-target.h-timestamp |
| 35 |
config-target.h-timestamp: config-target.mak |
39 |
config-target.h-timestamp: config-target.mak |
| 36 |
|
40 |
|
|
Lines 92-97
QEMU_CFLAGS+=-I$(SRC_PATH)/linux-user/$(TARGET_ABI_DIR) -I$(SRC_PATH)/linux-user
Link Here
|
| 92 |
obj-y += linux-user/ |
96 |
obj-y += linux-user/ |
| 93 |
obj-y += gdbstub.o thunk.o user-exec.o |
97 |
obj-y += gdbstub.o thunk.o user-exec.o |
| 94 |
|
98 |
|
|
|
99 |
obj-binfmt-wrapper-y += linux-user/binfmt-wrapper.o |
| 100 |
|
| 95 |
endif #CONFIG_LINUX_USER |
101 |
endif #CONFIG_LINUX_USER |
| 96 |
|
102 |
|
| 97 |
######################################################### |
103 |
######################################################### |
|
Lines 173-178
$(QEMU_PROG): $(all-obj-y) ../libqemuutil.a ../libqemustub.a
Link Here
|
| 173 |
$(call LINK,$^) |
179 |
$(call LINK,$^) |
| 174 |
endif |
180 |
endif |
| 175 |
|
181 |
|
|
|
182 |
$(QEMU_PROG)-binfmt-wrapper: $(obj-binfmt-wrapper-y) |
| 183 |
$(call LINK,$^) |
| 184 |
|
| 176 |
gdbstub-xml.c: $(TARGET_XML_FILES) $(SRC_PATH)/scripts/feature_to_c.sh |
185 |
gdbstub-xml.c: $(TARGET_XML_FILES) $(SRC_PATH)/scripts/feature_to_c.sh |
| 177 |
$(call quiet-command,rm -f $@ && $(SHELL) $(SRC_PATH)/scripts/feature_to_c.sh $@ $(TARGET_XML_FILES)," GEN $(TARGET_DIR)$@") |
186 |
$(call quiet-command,rm -f $@ && $(SHELL) $(SRC_PATH)/scripts/feature_to_c.sh $@ $(TARGET_XML_FILES)," GEN $(TARGET_DIR)$@") |
| 178 |
|
187 |
|