case merge for cascade, table.
author |
kono |
date |
Sun, 06 Jun 2004 02:40:32 +0900 |
parents |
8581c314e31a |
children |
ca34f02b2056 |
rev |
line source |
195
|
1 #!/bin/sh
|
|
2 rsync -e ssh -av --rsync-path /usr/bin/rsync \
|
|
3 --exclude '*.o' --exclude '*.s' --exclude mc --exclude mc1 \
|
|
4 --exclude mc-ia32 --exclude mc-powerpc --exclude CVS \
|
|
5 --exclude '*.bak' --exclude '*.out' \
|
213
|
6 kono@"$1":~/src/device $HOME
|
195
|
7 # touch Makefile *.c conv_* *.h */*.[hc]
|
|
8 # make clean
|
|
9 cp .gdbinit.ia32 .gdbinit
|
|
10 rm -f mc-ia32
|
|
11 make depend
|
|
12 rm b*.s
|
|
13 touch *.[hc] conv/*.[hc]
|
|
14 make diff ARCH=ia32
|