repo.or.cz
/
pintos.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
make_tar_archive() needs to initialize `success'.
[pintos.git]
/
Makefile
blob
2c374e72bf33b40f32c6476d6b5013a6258910db
1
CLEAN_SUBDIRS
=
src doc tests
2
3
all
::
4
@echo
"This makefile has only 'clean' and 'check' targets."
5
6
clean
::
7
for d in
$(
CLEAN_SUBDIRS
);
do
$(
MAKE
) -
C
$
$d
$
@
;
done
8
9
distclean
::
clean
10
find .
-
name
'*~'
-
exec
rm
'{}'
\
;
11
12
check
::
13
make
-
C tests
$
@