+test:
+ @rm -f $(OUTPUTSOUNDS_DIR)/output0.wav
+ @cd $(SRC_DIR) && ./faustine -d ../dsp_files/sin.dsp
+ @ls -l $(OUTPUTSOUNDS_DIR)/output0.wav
+
+ @echo " You might want to check the output file with either:"
+ @echo "audacity ../examples/output_sounds/output0.wav"
+ @echo "open ../examples/output_sounds/output0.wav"
+ @echo "octave -q --eval 'plot(wavread(\"../examples/output_sounds/output0.wav\")); pause'"
+
+install :
+ mkdir -p $(prefix)/lib/faustine/
+ mkdir -p $(prefix)/bin/
+ install interpretor/faustine $(prefix)/bin/
+ install -m 0644 $(arch) $(prefix)/lib/faustine/
+
+uninstall :
+ rm -rf $(prefix)/lib/faustine/
+ rm -f $(prefix)/bin/faustine
+