Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
8c04ef75
Commit
8c04ef75
authored
Nov 18, 2002
by
Jeff Dike
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed the Makefiles so that the ptproxy move from arch/um/ptproxy
to arch/um/kernel/tt/ptproxy works.
parent
42274964
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
10 additions
and
8 deletions
+10
-8
arch/um/Makefile
arch/um/Makefile
+0
-2
arch/um/kernel/Makefile
arch/um/kernel/Makefile
+2
-2
arch/um/kernel/tt/Makefile
arch/um/kernel/tt/Makefile
+1
-1
arch/um/kernel/tt/ptproxy/Makefile
arch/um/kernel/tt/ptproxy/Makefile
+7
-3
No files found.
arch/um/Makefile
View file @
8c04ef75
...
...
@@ -31,8 +31,6 @@ core-y += $(ARCH_DIR)/kernel/ \
$(ARCH_DIR)
/drivers/
\
$(ARCH_DIR)
/sys-
$(SUBARCH)
/
core-$(CONFIG_PT_PROXY)
+=
$(ARCH_DIR)
/ptproxy/
ARCH_INCLUDE
=
$(TOPDIR)
/
$(ARCH_DIR)
/include
# -Derrno=kernel_errno - This turns all kernel references to errno into
...
...
arch/um/kernel/Makefile
View file @
8c04ef75
...
...
@@ -18,14 +18,14 @@ obj-$(CONFIG_GPROF) += gprof_syms.o
obj-$(CONFIG_GCOV)
+=
gmon_syms.o
obj-$(CONFIG_TTY_LOG)
+=
tty_log.o
subdir-$(CONFIG_PTPROXY)
+=
tt
obj-$(CONFIG_PT_PROXY)
+=
tt/
user-objs-$(CONFIG_TTY_LOG)
+=
tty_log.o
# user_syms.o not included here because Rules.make has its own ideas about
# building anything in export-objs
USER_OBJS
:=
$(
filter
%_user.o,
$
(
obj-y
))
$
(
user-objs-y
)
config.o helper.o
USER_OBJS
:=
$(
filter
%_user.o,
$
(
obj-y
))
$
(
user-objs-y
)
config.o helper.o
\
process.o tempfile.o time.o tty_log.o umid.o user_util.o user_syms.o
USER_OBJS
:=
$(
foreach
file,
$(USER_OBJS)
,arch/um/kernel/
$(file)
)
...
...
arch/um/kernel/tt/Makefile
View file @
8c04ef75
...
...
@@ -3,7 +3,7 @@
# Licensed under the GPL
#
subdir-$(CONFIG_PT_PROXY)
+=
ptproxy
obj-$(CONFIG_PT_PROXY)
+=
ptproxy/
include
$(TOPDIR)/Rules.make
arch/um/kernel/tt/ptproxy/Makefile
View file @
8c04ef75
#
# Copyright (C) 2002 Jeff Dike (jdike@karaya.com)
# Licensed under the GPL
#
obj-y
=
proxy.o ptrace.o sysdep.o wait.o
USER_OBJS
:=
$(
foreach
file,
$
(
obj-y
)
,
arch/um/ptproxy
/
$(file)
)
USER_OBJS
:=
$(
foreach
file,
$
(
obj-y
)
,
$(src)
/
$(file)
)
include
$(TOPDIR)/Rules.make
$(USER_OBJS)
:
%.o: %.c
$(CC)
$
(
CFLAGS_
$
@
)
$(USER_CFLAGS)
-c
-o
$@
$<
$(CC)
$
(
CFLAGS_
$
(
notdir
$@
)
)
$(USER_CFLAGS)
-c
-o
$@
$<
clean
:
rm
-f
*
.o core child ptproxy
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment