Skip to content

Commit

Permalink
beautify output of Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
mzuther committed Jul 9, 2020
1 parent b192862 commit 74fee1a
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,24 +34,31 @@ faust: src/faust_generated.cpp src/faust/main-svg/process.svg


faust-clean:
@echo
@echo "Cleaning files generated by Faust..."
rm -f src/faust_generated.cpp
rm -rf src/faust/main-svg/*
@echo "Done."
@echo


run: install
Rack


src/faust/main-svg/process.svg:
@echo
@echo "Generating Faust diagrams..."
faust2svg --simple-names --simplify-diagrams --fold-complexity 25 src/faust/main.dsp
@echo "Done."
@echo


src/faust_generated.cpp: $(wildcard src/faust/*.dsp) src/faust/architecture_rack.cpp
@echo
@echo "Compiling Faust files..."
faust -a src/faust/architecture_rack.cpp -o src/faust_generated.cpp -os -cn FaustDSP src/faust/main.dsp
@echo
@echo "Done."


.PHONY: clean dist
Expand Down

0 comments on commit 74fee1a

Please sign in to comment.