paulstretch_cpp

PaulStretch
Log | Files | Refs | LICENSE

compile_linux_fftw_jack.sh (444B)


      1 outfile=paulstretch
      2 
      3 rm -f $outfile
      4 
      5 fluid -c GUI.fl 
      6 fluid -c FreeEditUI.fl
      7 
      8 g++ -ggdb GUI.cxx FreeEditUI.cxx *.cpp Input/*.cpp Output/*.cpp `fltk-config --cflags` \
      9  `fltk-config --ldflags` \
     10  -laudiofile -lfftw3f -lz -logg -lvorbis  -lvorbisenc -lvorbisfile -lportaudio -lpthread -lmad -lmxml \
     11  `pkg-config --cflags --libs jack samplerate` \
     12  -DHAVE_JACK -DENABLE_RESAMPLING \
     13  -o $outfile
     14 
     15 rm -f GUI.h GUI.cxx FreeEditUI.h FreeEditUI.cxx
     16