~ubuntu-branches/ubuntu/hoary/kdemultimedia/hoary

« back to all changes in this revision

Viewing changes to kmidi/TIMIDITY/makelinks

  • Committer: Bazaar Package Importer
  • Author(s): Martin Schulze
  • Date: 2003-01-22 15:00:51 UTC
  • Revision ID: james.westby@ubuntu.com-20030122150051-uihwkdoxf15mi1tn
Tags: upstream-2.2.2
ImportĀ upstreamĀ versionĀ 2.2.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#!/bin/sh
 
2
srcdir=$1
 
3
for header in common config controls ctl effects filter instrum mix \
 
4
              output playmidi readmidi resample sbk sflayer tables \
 
5
              version ; do
 
6
    if [ ! -h ${header}.h ]; then ln -s ${srcdir}/${header}.h . ; fi
 
7
done
 
8
 
 
9
for cfile in alsa_a arts_a b_out bag bsd20_a celeste_e chorus_e \
 
10
             common controls cfg ctl dec_a dumb_c effects esd_a \
 
11
             fffload filter gentxt getopt hpux_a hpux_d_a instrum \
 
12
             linux_a linux_a2 mix nas_a ncurs_c output phaser_e \
 
13
             playmidi raw_a readmidi readsbk resample resample_f \
 
14
             resample_l reverb_e sbktext sf2cfg slang_c sndfont \
 
15
             sun_a tables timidity wav2pat wave_a ; do
 
16
    if [ ! -h ${cfile}.c ]; then ln -s ${srcdir}/${cfile}.cpp ${cfile}.c ; fi
 
17
done
 
18
 
 
19
for lfile in cfg ; do
 
20
    if [ ! -h ${lfile}.l ]; then ln -s ${srcdir}/${lfile}.l . ; fi
 
21
done
 
22
 
 
23
for other in BITMAPS ; do
 
24
    if [ ! -h ${other} ]; then ln -s ${srcdir}/${other} . ; fi
 
25
done