Move ducker to separate directory

master
Peter Nelson 2013-02-01 17:39:11 +00:00
parent 4d16160270
commit 60bbaac366
4 changed files with 31 additions and 0 deletions

24
ducker/Makefile 100644
View File

@ -0,0 +1,24 @@
CFLAGS := -Wall -O3 -g -D_GNU_SOURCE
LDFLAGS := -lm
CFLAGS += `pkg-config lv2core --cflags`
LDFLAGS += `pkg-config lv2core --libs`
DUCKERSRC := ducker.c
DUCKEROBJ := $(DUCKERSRC:.c=.o)
DUCKERO := ducker.so
all: $(DUCKERO)
clean:
rm $(DUCKEROBJ) $(DUCKERO)
depend:
makedepend $(DUCKERSRC)
$(DUCKERO): $(DUCKEROBJ)
$(CC) -shared -fPIC -Wl,-soname,$(DUCKERO) $(DUCKEROBJ) -o $@
.c.o:
$(CC) -c -fPIC $(CFLAGS) $< -o $@

View File

@ -0,0 +1,7 @@
@prefix lv2: <http://lv2plug.in/ns/lv2core#> .
@prefix rdfs: <http://www.w3.org/2000/01/rdf-schema#> .
<http://fuzzle.org/~petern/ptap/1>
a lv2:Plugin, lv2:DelayPlugin;
lv2:binary <ptap.so>;
rdfs:seeAlso <ptap.ttl>.