summaryrefslogtreecommitdiffstats
path: root/mpeglib_artsplug/doemacs
blob: e4d743efab8f0f6fa0162b7d01f98f8d74c2b11e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29


A=`find . | grep -v tqmoc > flist.txt`
A=`grep "\.cpp$" flist.txt >cpp.txt`
A=`grep "\.h$" flist.txt >h.txt`
A=`grep "\.c$" flist.txt >c.txt`
A=`grep "\.cc$" flist.txt >cc.txt`
A=`grep "\.idl$" flist.txt >idl.txt`
A=`grep "\.defs$" flist.txt >defs.txt`
C=`cat c.txt`
CP=`cat cpp.txt`
H=`cat h.txt`
CC=`cat cc.txt`
IDL=`cat idl.txt`
DEFS=`cat defs.txt`

B="${CP} ${H} ${C} ${CC} ${DEFS} ${IDL}"

emacs $B &
rm -f cpp.txt
rm -f h.txt
rm c.txt
rm cc.txt
rm flist.txt
rm defs.txt
rm idl.txt