diff options
author | David Robillard <d@drobilla.net> | 2006-09-03 04:02:34 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2006-09-03 04:02:34 +0000 |
commit | 6c8dc477bda2d6e67893f4475e603a11cf507017 (patch) | |
tree | 3ce9f843f729049b1c9357880851959d18f4c262 /examples/plugins/Amp-onefile-slv2.lv2/Makefile | |
parent | 133415ab52c297199acb29822fc7ec572fbafa2f (diff) | |
download | lilv-6c8dc477bda2d6e67893f4475e603a11cf507017.tar.gz lilv-6c8dc477bda2d6e67893f4475e603a11cf507017.tar.bz2 lilv-6c8dc477bda2d6e67893f4475e603a11cf507017.zip |
Support for plugin data in manifest.ttl
git-svn-id: http://svn.drobilla.net/lad/libslv2@112 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'examples/plugins/Amp-onefile-slv2.lv2/Makefile')
-rw-r--r-- | examples/plugins/Amp-onefile-slv2.lv2/Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/examples/plugins/Amp-onefile-slv2.lv2/Makefile b/examples/plugins/Amp-onefile-slv2.lv2/Makefile new file mode 100644 index 0000000..eb7dfe1 --- /dev/null +++ b/examples/plugins/Amp-onefile-slv2.lv2/Makefile @@ -0,0 +1,10 @@ +CFLAGS = -Wall -I../../../include -fPIC -g -O0 + +all: amp.so + +amp.so: amp.o + $(LD) amp.o -o amp.so -shared + rm amp.o + +clean: + rm *.o amp.so |