include ../../clam-top.cfg # The path to the top of the project sources tree TOP = ../../$(CLAM_TOP) #put here the name you want for the binary PROGRAM = GenGvhmm8000 # include the default values for these variables include $(TOP)/build/defaults.cfg # whether to use double (1) or float (0) for TData CLAM_DOUBLE = 0 # whether to compile XML dependant code, and link agains Xerces CLAM_USE_XML = 1 # whether to disable all the CLAM checks, both debug and normal CLAM_DISABLE_CHECKS = 0 # whether to simulate release checks being in debug mode CLAM_USE_RELEASE_ASSERTS = 0 # external library dependency indicators # the application uses ALSA development libraries USE_ALSA = 0 # the application uses the FFTW library USE_FFTW = 1 # the application uses the FLTK library USE_FLTK = 0 # the application uses DirectX SDK USE_DIRECTX = 0 # the application uses Portaudio USE_PORTAUDIO = 0 # the application uses Portmidi USE_PORTMIDI = 0 # the application uses RtAudio USE_RTAUDIO = 0 # the application uses pthreads ( POSIX Threads library ) USE_PTHREADS = 0 # the application uses QT USE_QT = 0 # the application uses CPPUNIT USE_CPPUNIT = 0 USE_SNDFILE=1 USE_PTHREADS = 1 USE_OGGVORBIS = 1 USE_MAD=1 USE_ID3=1 # Add to the variable below the path(s) where you want srcdeps to search for dependencies # *without* descending recursively into sub-folders PRJ_SEARCH_INCLUDES = # Add to the variable below the path(s) where you want srcdeps to search for dependencies # descending recursively into sub-folders PRJ_SEARCH_RECURSE_INCLUDES = $(TOP)/$(TOP_SOURCE)/sources \ # Do not edit the line below include $(TOP)/build/system.cfg SEARCH_INCLUDES = $(SEARCH_INCLUDES) /usr/local/include LIBRARY_PATHS= $(LIBRARY_PATHS) /usr/local/lib LIBRARIES_DEBUG= $(LIBRARIES_DEBUG) samplerate LIBRARIES_RELEASE= $(LIBRARIES_RELEASE) samplerate # add here the path to the source file that contains the application # entry point (at least the file where "main" function is) SOURCES = $(TOP)/$(TOP_SOURCE)/examples/GenGvhmm8000.cxx