Add stressfs and gdbutil to dist
This commit is contained in:
parent
b0170c4b82
commit
5e710e688e
1 changed files with 5 additions and 4 deletions
7
Makefile
7
Makefile
|
@ -167,15 +167,16 @@ qemu-gdb-nox: fs.img xv6.img .gdbinit
|
||||||
# check in that version.
|
# check in that version.
|
||||||
|
|
||||||
EXTRA=\
|
EXTRA=\
|
||||||
mkfs.c ulib.c user.h cat.c echo.c forktest.c grep.c\
|
mkfs.c ulib.c user.h cat.c echo.c forktest.c grep.c kill.c\
|
||||||
kill.c ln.c ls.c mkdir.c rm.c usertests.c wc.c zombie.c\
|
ln.c ls.c mkdir.c rm.c stressfs.c usertests.c wc.c zombie.c\
|
||||||
printf.c umalloc.c\
|
printf.c umalloc.c\
|
||||||
README dot-bochsrc *.pl toc.* runoff runoff1 runoff.list\
|
README dot-bochsrc *.pl toc.* runoff runoff1 runoff.list\
|
||||||
|
.gdbinit.tmpl gdbutil\
|
||||||
|
|
||||||
dist:
|
dist:
|
||||||
rm -rf dist
|
rm -rf dist
|
||||||
mkdir dist
|
mkdir dist
|
||||||
for i in $(FILES) .gdbinit.tmpl; \
|
for i in $(FILES); \
|
||||||
do \
|
do \
|
||||||
grep -v PAGEBREAK $$i >dist/$$i; \
|
grep -v PAGEBREAK $$i >dist/$$i; \
|
||||||
done
|
done
|
||||||
|
|
Loading…
Reference in a new issue