Mercurial > hg > vamp-plugin-sdk
comparison Makefile @ 7:c66551966b5f
* Fix a couple of memory management and corruption bugs
* Some textual fixes
author | cannam |
---|---|
date | Fri, 31 Mar 2006 17:39:49 +0000 |
parents | ad9aa1881a70 |
children | 83d3eb580731 |
comparison
equal
deleted
inserted
replaced
6:8f10d35a4090 | 7:c66551966b5f |
---|---|
1 | 1 |
2 | 2 |
3 all: examples/plugins.so host/simplehost test | 3 all: examples_ host_ test |
4 | 4 |
5 examples/plugins.so: | 5 examples_: |
6 $(MAKE) -C examples all | 6 $(MAKE) -C examples all |
7 | 7 |
8 host/simplehost: | 8 host_: |
9 $(MAKE) -C host all | 9 $(MAKE) -C host all |
10 | 10 |
11 test: | 11 test: |
12 $(MAKE) -C host test | 12 $(MAKE) -C host test |
13 | 13 |