Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
P
Pintos_forked_resit
Manage
Activity
Members
Plan
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Analyze
Contributor analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
s2-alsaloumi
Pintos_forked_resit
Commits
bd18e8b0
Commit
bd18e8b0
authored
1 year ago
by
h2-addad
Browse files
Options
Downloads
Patches
Plain Diff
Update
parent
bd0f1ef4
No related branches found
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/Makefile.userprog
+52
-0
52 additions, 0 deletions
src/Makefile.userprog
with
52 additions
and
0 deletions
src/Makefile.userprog
0 → 100644
+
52
−
0
View file @
bd18e8b0
# -*- makefile -*-
$(PROGS)
:
CPPFLAGS += -I$(SRCDIR)/lib/user -I.
# Linker flags.
$(PROGS)
:
LDFLAGS += -nostdlib -static -Wl
,
-T
,
$(LDSCRIPT)
$(PROGS)
:
LDSCRIPT = $(SRCDIR)/lib/user/user.lds
# Library code shared between kernel and user programs.
lib_SRC
=
lib/debug.c
# Debug code.
lib_SRC
+=
lib/random.c
# Pseudo-random numbers.
lib_SRC
+=
lib/stdio.c
# I/O library.
lib_SRC
+=
lib/stdlib.c
# Utility functions.
lib_SRC
+=
lib/string.c
# String functions.
lib_SRC
+=
lib/arithmetic.c
# 64-bit arithmetic for GCC.
lib_SRC
+=
lib/ustar.c
# Unix standard tar format utilities.
# User level only library code.
lib/
user_SRC
=
lib/user/debug.c
# Debug helpers.
lib/
user_SRC
+=
lib/user/syscall.c
# System calls.
lib/
user_SRC
+=
lib/user/console.c
# Console code.
LIB_OBJ
=
$(
patsubst %.c,%.o,
$(
patsubst %.S,%.o,
$(
lib_SRC
)
$(
lib/user_SRC
)))
LIB_DEP
=
$(
patsubst %.o,%.d,
$(
LIB_OBJ
))
LIB
=
lib/user/entry.o libc.a
PROGS_SRC
=
$(
foreach prog,
$(
PROGS
)
,
$($(
prog
)
_SRC
))
PROGS_OBJ
=
$(
patsubst %.c,%.o,
$(
patsubst %.S,%.o,
$(
PROGS_SRC
)))
PROGS_DEP
=
$(
patsubst %.o,%.d,
$(
PROGS_OBJ
))
all
:
$(PROGS)
define
TEMPLATE
$(1)_OBJ
=
$(
patsubst %.c,%.o,
$(
patsubst %.S,%.o,
$($(
1
)
_SRC
)))
$(1)
:
$$($(1)_OBJ) $$(LIB) $$(LDSCRIPT)
$$(
CC
)
$$(
LDFLAGS
)
$$($(
1
)
_OBJ
)
$$(
LIB
)
-o
$$
@
endef
$(
foreach
prog,
$(
PROGS
)
,
$(
eval
$(
call TEMPLATE,
$(
prog
))))
libc.a
:
$(LIB_OBJ)
rm
-f
$@
ar r
$@
$^
ranlib
$@
clean
::
rm
-f
$(
PROGS
)
$(
PROGS_OBJ
)
$(
PROGS_DEP
)
rm
-f
$(
LIB_DEP
)
$(
LIB_OBJ
)
lib/user/entry.[do] libc.a
.PHONY
:
all clean
-include
$(LIB_DEP) $(PROGS_DEP)
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment