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
cb7e64b3
Commit
cb7e64b3
authored
1 year ago
by
h2-addad
Browse files
Options
Downloads
Patches
Plain Diff
update
parent
9329e85e
Branches
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/Makefile
+29
-0
29 additions, 0 deletions
src/Makefile
with
29 additions
and
0 deletions
src/Makefile
0 → 100644
+
29
−
0
View file @
cb7e64b3
BUILD_SUBDIRS
=
threads userprog vm filesys
all
::
@
echo
"Run 'make' in subdirectories:
$(
BUILD_SUBDIRS
)
."
@
echo
"This top-level make has only 'clean' targets."
CLEAN_SUBDIRS
=
$(
BUILD_SUBDIRS
)
examples utils
clean
::
for
d
in
$(
CLEAN_SUBDIRS
);
do
$(
MAKE
)
-C
$$
d
$@
;
done
rm
-f
TAGS tags
distclean
::
clean
find
.
-name
'*~'
-exec
rm
'{}'
\;
TAGS_SUBDIRS
=
$(
BUILD_SUBDIRS
)
devices lib
TAGS_SOURCES
=
find
$(
TAGS_SUBDIRS
)
-name
\*
.[chS]
-print
TAGS
::
etags
--members
`
$(
TAGS_SOURCES
)
`
tags
::
ctags
-T
--no-warn
`
$(
TAGS_SOURCES
)
`
cscope.files
::
$(
TAGS_SOURCES
)
>
cscope.files
cscope
::
cscope.files
cscope
-b
-q
-k
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