#!/bin/csh

# The Include subdirectory contains links to the include files
# in all the other subdirectories.

# Run this script to create those links

foreach i (Clients CommonClasses MIDIServer.TG33 NetworkAudioAccessDaemon SPARCServer Shared Transform)
  foreach j ( ../$i/*.h )
	ln -s $j >& /dev/null
  end
end
rm DeviceSpecificDefs.h
