Mercurial > hg > piper-vamp-js
annotate Makefile @ 162:1c99b6b9766b
Add example plugin conversion in the form of a Docker file
author | Chris Cannam <cannam@all-day-breakfast.com> |
---|---|
date | Fri, 16 Jun 2017 11:44:15 +0100 |
parents | 205f9a6240f5 |
children | a91b4defa581 |
rev | line source |
---|---|
cannam@153 | 1 |
cannam@153 | 2 all: prerequisites generator examples |
cannam@153 | 3 |
cannam@153 | 4 prerequisites: |
cannam@153 | 5 ./bin/check-prerequisites.sh |
cannam@153 | 6 |
cannam@159 | 7 clean: |
cannam@159 | 8 $(MAKE) -C generator clean |
cannam@159 | 9 $(MAKE) -C examples/vamp-example-plugins clean |
cannam@159 | 10 $(MAKE) -C examples/vamp-test-plugin clean |
cannam@159 | 11 |
cannam@153 | 12 .PHONY: generator |
cannam@153 | 13 generator: |
cannam@153 | 14 $(MAKE) -C generator |
cannam@153 | 15 |
cannam@153 | 16 .PHONY: examples |
cannam@153 | 17 examples: |
cannam@159 | 18 $(MAKE) -C examples/vamp-example-plugins em |
cannam@159 | 19 $(MAKE) -C examples/vamp-test-plugin em |
cannam@153 | 20 $(MAKE) -C examples/vamp-example-plugins test |
cannam@153 | 21 $(MAKE) -C examples/vamp-test-plugin test |