Mercurial > hg > piper-vamp-js
annotate Makefile @ 153:38675dcea44f
Bring the stub generator into this repo (from piper-vamp-cpp)
author | Chris Cannam <cannam@all-day-breakfast.com> |
---|---|
date | Wed, 14 Jun 2017 10:06:30 +0100 |
parents | |
children | 205f9a6240f5 |
rev | line source |
---|---|
cannam@153 | 1 |
cannam@153 | 2 all: prerequisites generator examples |
cannam@153 | 3 |
cannam@153 | 4 .PHONY: prerequisites |
cannam@153 | 5 prerequisites: |
cannam@153 | 6 ./bin/check-prerequisites.sh |
cannam@153 | 7 |
cannam@153 | 8 .PHONY: generator |
cannam@153 | 9 generator: |
cannam@153 | 10 $(MAKE) -C generator |
cannam@153 | 11 |
cannam@153 | 12 .PHONY: examples |
cannam@153 | 13 examples: |
cannam@153 | 14 $(MAKE) -C examples/vamp-example-plugins clean em |
cannam@153 | 15 $(MAKE) -C examples/vamp-test-plugin clean em |
cannam@153 | 16 $(MAKE) -C examples/vamp-example-plugins test |
cannam@153 | 17 $(MAKE) -C examples/vamp-test-plugin test |