Skip to content

Commit 240a021

Browse files
committedJun 9, 2009
add make_tarball script
1 parent 335cf96 commit 240a021

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed
 

‎make_tarball

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
#!/bin/bash
2+
3+
cd src
4+
cd final
5+
make clean
6+
cd ../step-1 && make clean
7+
cd ../step-2 && make clean
8+
cd ../step-3 && make clean
9+
cd ../step-4 && make clean
10+
cd ../step-5 && make clean
11+
cd ../step-6 && make clean
12+
13+
cd ..
14+
cd ..
15+
mkdir usb_tutorial
16+
rsync -av src/ usb_tutorial
17+
tar -c usb_tutorial/ | gzip -9v > usb_tutorial.tar.gz
18+
rm -rf usb_tutorial
19+

0 commit comments

Comments
 (0)
Please sign in to comment.