TOP = ../../ PROGRAM = SMSTools 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 = 1 USE_FFTW = 1 USE_FLTK = 1 USE_QT = 0 USE_DIRECTX = 0 USE_PORTAUDIO = 0 USE_RTAUDIO = 1 USE_PTHREADS = 1 USE_PORTMIDI = 0 PRJ_SEARCH_INCLUDES = PRJ_SEARCH_RECURSE_INCLUDES = $(TOP)/src \ include $(TOP)/build/system.cfg LIBRARY_PATHS = $(LIBRARY_PATHS) /usr/local/lib LIBRARIES_RELEASE = $(LIBRARIES_RELEASE) CLAMCore CLAMProcessing CLAMIO CLAMSMS CLAMVM LIBRARIES_DEBUG = $(LIBRARIES_DEBUG) CLAMCore CLAMProcessing CLAMIO CLAMSMS CLAMVM # for avoiding the nasty bug of Factories being instantiated more than once over the same # memory address INLINE_VC6_FIX_FLAGS_RELEASE = \ /nologo /MD /W3 /GR /GX /O2 /Ob0 /FD /c /Zm1000 # for avoiding Apple's dumb 'coalescesing' logic APPLE_CXXFLAGS_RELEASE_SAFE= -O3 -fno-inline -fcoalesce -fcoalesce-templates CXXFLAGS_RELEASE = $(OS_WINDOWS? $(INLINE_VC6_FIX_FLAGS_RELEASE) : $(CXXFLAGS_RELEASE)) CXXFLAGS_RELEASE = $(OS_MACOSX? $(APPLE_CXXFLAGS_RELEASE_SAFE) : $(CXXFLAGS_RELEASE)) NO_CONSOLE_BUILD = \ /nologo /subsystem:windows /NODEFAULTLIB:MSVCRTD /machine:I386 $(IS_LIBRARY?/dll) LINK_FLAGS_RELEASE = $(OS_WINDOWS? $(NO_CONSOLE_BUILD) : $(LINK_FLAGS_RELEASE) ) # just some variables for making easier to specify new Transformations and Transformation Configurators SMS_SCORE_EDITOR_DIR = $(TOP)/src/GUI/ScoreEditor SOURCES = \ $(TOP)/src/mainSMSTools.cxx \ $(SMS_SCORE_EDITOR_DIR)/SMSFreqShiftConfigurator.cxx \ $(SMS_SCORE_EDITOR_DIR)/SMSGenderChangeConfigurator.cxx \ $(SMS_SCORE_EDITOR_DIR)/SMSHarmonizerConfigurator.cxx \ $(SMS_SCORE_EDITOR_DIR)/SMSMorphConfigurator.cxx \ $(SMS_SCORE_EDITOR_DIR)/SMSOddEvenHarmonicRatioConfigurator.cxx \ $(SMS_SCORE_EDITOR_DIR)/SMSPitchDiscretizationConfigurator.cxx \ $(SMS_SCORE_EDITOR_DIR)/SMSSineFilterConfigurator.cxx \ $(SMS_SCORE_EDITOR_DIR)/SMSSinusoidalGainConfigurator.cxx \ $(SMS_SCORE_EDITOR_DIR)/SMSSpectralShapeShiftConfigurator.cxx \ $(SMS_SCORE_EDITOR_DIR)/SMSResidualGainConfigurator.cxx \ $(SMS_SCORE_EDITOR_DIR)/SMSPitchShiftConfigurator.cxx \ $(SMS_SCORE_EDITOR_DIR)/SMSTimeStretchConfigurator.cxx \