Mercurial > hg > vamp-plugin-sdk
annotate Makefile @ 9:44113b1e296b
* Add valueNames to parameter descriptor
* Change valueCount and valueNames to binCount and binNames in output
descriptor, to avoid confusion with other uses of value
* Some explanatory notes about FFT alignment
| author | cannam |
|---|---|
| date | Wed, 05 Apr 2006 16:50:07 +0000 |
| parents | c66551966b5f |
| children | 83d3eb580731 |
| rev | line source |
|---|---|
| cannam@0 | 1 |
| cannam@0 | 2 |
| cannam@7 | 3 all: examples_ host_ test |
| cannam@1 | 4 |
| cannam@7 | 5 examples_: |
| cannam@0 | 6 $(MAKE) -C examples all |
| cannam@0 | 7 |
| cannam@7 | 8 host_: |
| cannam@1 | 9 $(MAKE) -C host all |
| cannam@1 | 10 |
| cannam@1 | 11 test: |
| cannam@1 | 12 $(MAKE) -C host test |
| cannam@1 | 13 |
| cannam@0 | 14 clean: |
| cannam@0 | 15 $(MAKE) -C examples clean |
| cannam@0 | 16 |
| cannam@0 | 17 distclean: |
| cannam@0 | 18 $(MAKE) -C examples distclean |
| cannam@1 | 19 $(MAKE) -C host distclean |
| cannam@0 | 20 rm -f *~ *.bak $(TARGET) |
| cannam@0 | 21 |
