TOP = ../../.. PROGRAM = JACKPrototyper include $(TOP)/build/defaults.cfg CLAM_DOUBLE = 0 # whether to use double (1) or float (0) for TData CLAM_USE_XML = 1 # whether to compile XML dependant code, and link agains Xerces CLAM_DISABLE_CHECKS = 0 # whether to disable all the CLAM checks, both debug and normal CLAM_USE_RELEASE_ASSERTS = 0 # whether to simulate release checks being in debug mode USE_ALSA = $(HAS_ALSA) USE_FFTW = 1 USE_FLTK = 0 USE_QT = 1 USE_GL = 1 USE_DIRECTX = 0 USE_PORTAUDIO = 0 USE_RTAUDIO = $(HAS_RTAUDIO) USE_PTHREADS = 1 USE_PORTMIDI = 0 USE_CPPUNIT = 0 USE_SNDFILE = 1 USE_MAD = 1 USE_ID3 = 1 USE_OGGVORBIS = 1 USE_OSCPACK = 0 PRJ_SEARCH_INCLUDES = \ $(TOP)/examples/Prototyper/ \ PRJ_SEARCH_RECURSE_INCLUDES = \ # Caution! The following link is not standard. Might need adaptation NETEDITOR_PROCESSINGS = $(TOP)/../CLAM_NetworkEditor/src/Processings include $(TOP)/build/system.cfg LIBRARIES_DEBUG = $(LIBRARIES_DEBUG) jack qui LIBRARIES_RELEASE = $(LIBRARIES_RELEASE) jack qui SMS_TRANSFORMS_DIR = $(CLAM_PATH)/src/Processing/Transformations/SMS UNUSED_PROCESSINGS = \ $(CLAM_PATH)/src/Processing/Controls/OSCSender.cxx \ $(CLAM_PATH)/src/Processing/Plugins/LadspaLoader.cxx \ $(CLAM_PATH)/src/Processing/AudioFileIO/MultiChannelAudioFileReader.cxx \ $(CLAM_PATH)/src/Processing/AudioFileIO/MultiChannelAudioFileWriter.cxx \ $(CLAM_PATH)/src/Visualization/QTVM/Network/Processings/AudioPlotProcessing.cxx \ $(CLAM_PATH)/src/Visualization/QTVM/Network/Processings/SpectrumPlotProcessing.cxx \ $(CLAM_PATH)/src/Visualization/QTVM/Network/Processings/PeaksPlotProcessing.cxx \ $(CLAM_PATH)/src/Visualization/QTVM/Network/Processings/FundPlotProcessing.cxx \ $(CLAM_PATH)/src/Visualization/QTVM/Network/Processings/SinTracksPlotProcessing.cxx \ $(CLAM_PATH)/src/Visualization/QTVM/Network/Processings/FundTrackPlotProcessing.cxx \ $(CLAM_PATH)/src/Visualization/QTVM/Network/Processings/SpecgramPlotProcessing.cxx \ $(CLAM_PATH)/src/Visualization/QTVM/Network/Processings/AudioBuffPlotProcessing.cxx \ $(CLAM_PATH)/src/Processing/ArithOps/AudioMultiplier.cxx \ $(CLAM_PATH)/src/Processing/ArithOps/AudioAdder.cxx \ $(CLAM_PATH)/src/Processing/ArithOps/AudioMixer.cxx \ $(CLAM_PATH)/src/Processing/Analysis/FFT_rfftw.cxx \ $(CLAM_PATH)/src/Processing/Synthesis/IFFT_rfftw.cxx \ $(CLAM_PATH)/src/Processing/Controls/AutoPanner.cxx \ $(CLAM_PATH)/src/Processing/Controls/Controller.cxx USED_PROCESSINGS = \ $(CLAM_PATH)/src/Processing/Controls/OutControlSender.cxx \ $(CLAM_PATH)/src/Processing/Controls/FlagControl.cxx \ $(NETEDITOR_PROCESSINGS)/Random.cxx \ $(NETEDITOR_PROCESSINGS)/OneOverF.cxx \ $(NETEDITOR_PROCESSINGS)/SquareWave.cxx \ $(CLAM_PATH)/src/Processing/AudioFileIO/MonoAudioFileReader.cxx \ $(CLAM_PATH)/src/Processing/AudioFileIO/MonoAudioFileWriter.cxx \ $(CLAM_PATH)/src/Processing/Synthesis/SMSSynthesis.cxx \ $(CLAM_PATH)/src/Processing/Generators/ADSR.cxx \ $(CLAM_PATH)/src/Processing/Analysis/SMSAnalysisCore.cxx \ $(CLAM_PATH)/src/Processing/AudioIO/AudioOut.cxx \ $(SMS_TRANSFORMS_DIR)/SMSFreqShift.cxx \ $(SMS_TRANSFORMS_DIR)/SMSPitchShift.cxx \ $(SMS_TRANSFORMS_DIR)/SMSResidualGain.cxx \ $(SMS_TRANSFORMS_DIR)/SMSSinusoidalGain.cxx \ $(SMS_TRANSFORMS_DIR)/SMSSineFilter.cxx \ $(SMS_TRANSFORMS_DIR)/SMSOddEvenHarmonicRatio.cxx \ $(SMS_TRANSFORMS_DIR)/SMSSpectralShapeShift.cxx \ $(SMS_TRANSFORMS_DIR)/SMSPitchDiscretization.cxx \ $(SMS_TRANSFORMS_DIR)/SMSGenderChange.cxx SOURCES = \ $(TOP)/examples/Prototyper/JACKPrototypeLoader.cxx \ $(TOP)/examples/QtDesignerPlugins/CLAMWidgetsPlugin.cxx \ $(CLAM_PATH)/src/Processing/DefaultProcessingFactoryRegistration.cxx \ $(SOURCES_AUDIODEVICE) \ $(USED_PROCESSINGS) \