Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
qemu
提交
8e98e2e8
Q
qemu
项目概览
openeuler
/
qemu
通知
10
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
Q
qemu
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
8e98e2e8
编写于
10月 24, 2012
作者:
P
Paolo Bonzini
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
build: kill libuser
Signed-off-by:
N
Paolo Bonzini
<
pbonzini@redhat.com
>
上级
76cad711
变更
5
隐藏空白更改
内联
并排
Showing
5 changed file
with
6 addition
and
35 deletion
+6
-35
Makefile
Makefile
+3
-5
Makefile.objs
Makefile.objs
+2
-1
Makefile.target
Makefile.target
+1
-2
Makefile.user
Makefile.user
+0
-24
configure
configure
+0
-3
未找到文件。
Makefile
浏览文件 @
8e98e2e8
...
...
@@ -132,7 +132,7 @@ $(SUBDIR_RULES): libqemustub.a
$(filter %-softmmu,$(SUBDIR_RULES))
:
$(universal-obj-y) $(trace-obj-y) $(common-obj-y) $(extra-obj-y)
$(filter %-user,$(SUBDIR_RULES))
:
$(universal-obj-y) $(trace-obj-y)
subdir-libuser
$(filter %-user,$(SUBDIR_RULES))
:
$(universal-obj-y) $(trace-obj-y)
$(user-obj-y)
ROMSUBDIR_RULES
=
$(
patsubst
%,romsubdir-%,
$(ROMS)
)
romsubdir-%
:
...
...
@@ -224,8 +224,6 @@ $(qga-obj-y) qemu-ga.o: $(QGALIB_GEN)
qemu-ga$(EXESUF)
:
qemu-ga.o $(qga-obj-y) $(oslib-obj-y) $(trace-obj-y) $(qapi-obj-y) $(qobject-obj-y) $(version-obj-y) libqemustub.a
QEMULIBS
=
libuser
clean
:
# avoid old build problems by removing potentially incorrect old files
rm
-f
config.mak
op-i386.h
opc-i386.h
gen-op-i386.h
op-arm.h
opc-arm.h
gen-op-arm.h
...
...
@@ -242,7 +240,7 @@ clean:
rm
-rf
qapi-generated
rm
-rf
qga/qapi-generated
$(MAKE)
-C
tests/tcg
clean
for
d
in
$(ALL_SUBDIRS)
$(QEMULIBS)
libcacard;
do
\
for
d
in
$(ALL_SUBDIRS)
libcacard;
do
\
if
test
-d
$$d;
then
$(MAKE)
-C
$$d
$@
||
exit
1;
fi;
\
rm
-f
$$d/qemu-options.def;
\
done
...
...
@@ -265,7 +263,7 @@ distclean: clean
rm
-f
config.log
rm
-f
linux-headers/asm
rm
-f
qemu-tech.info qemu-tech.aux qemu-tech.cp qemu-tech.dvi qemu-tech.fn qemu-tech.info qemu-tech.ky qemu-tech.log qemu-tech.pdf qemu-tech.pg qemu-tech.toc qemu-tech.tp qemu-tech.vr
for
d
in
$(TARGET_DIRS)
$(QEMULIBS)
;
do
\
for
d
in
$(TARGET_DIRS)
;
do
\
rm
-rf
$$
d
||
exit
1
;
\
done
if
test
-f
pixman/config.log
;
then
make
-C
pixman distclean
;
fi
...
...
Makefile.objs
浏览文件 @
8e98e2e8
...
...
@@ -123,7 +123,6 @@ user-obj-y += tcg-runtime.o host-utils.o
user-obj-y
+=
cache-utils.o
user-obj-y
+=
module.o
user-obj-y
+=
qemu-user.o
user-obj-y
+=
$
(
trace-obj-y
)
user-obj-y
+=
qom/
######################################################################
...
...
@@ -196,6 +195,8 @@ trace-obj-y += trace/control.o
$(trace-obj-y)
:
$(GENERATED_HEADERS)
universal-obj-y
+=
$
(
trace-obj-y
)
######################################################################
# smartcard
...
...
Makefile.target
浏览文件 @
8e98e2e8
...
...
@@ -155,9 +155,8 @@ all-obj-y += $(addprefix ../, $(universal-obj-y))
ifdef
CONFIG_SOFTMMU
all-obj-y
+=
$(
addprefix
../,
$
(
common-obj-y
))
all-obj-y
+=
$(
addprefix
../,
$
(
trace-obj-y
))
else
all-obj-y
+=
$(
addprefix
../
libuser/
,
$
(
user-obj-y
))
all-obj-y
+=
$(
addprefix
../,
$
(
user-obj-y
))
endif
#CONFIG_LINUX_USER
ifdef
QEMU_PROGW
...
...
Makefile.user
已删除
100644 → 0
浏览文件 @
76cad711
# Makefile for qemu target independent user files.
include
../config-host.mak
include
$(SRC_PATH)/rules.mak
-include
config.mak
.PHONY
:
all
$(call
set-vpath,
$(SRC_PATH))
QEMU_CFLAGS
+=
-I
..
QEMU_CFLAGS
+=
-I
$(SRC_PATH)
/include
QEMU_CFLAGS
+=
-DCONFIG_USER_ONLY
include
$(SRC_PATH)/Makefile.objs
all
:
$(user-obj-y)
# Dummy command so that make thinks it has done something
@true
clean
:
for
d
in
.
trace
;
do
\
rm
-f
$$
d/
*
.o
$$
d/
*
.d
$$
d/
*
.a
$$
d/
*
~
;
\
done
configure
浏览文件 @
8e98e2e8
...
...
@@ -4212,9 +4212,6 @@ for rom in seabios vgabios ; do
echo
"LD=
$ld
"
>>
$config_mak
done
d
=
libuser
symlink
"
$source_path
/Makefile.user"
"
$d
/Makefile"
if
test
"
$docs
"
=
"yes"
;
then
mkdir
-p
QMP
fi
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录