Start of UI

This commit is contained in:
2013-02-01 21:47:59 +00:00
parent 029d2f6cdd
commit 62c5a4a14e
4 changed files with 138 additions and 5 deletions

View File

@@ -1,8 +1,8 @@
CFLAGS := -Wall -O3 -g -D_GNU_SOURCE
LDFLAGS := -lm
CFLAGS += `pkg-config lv2core --cflags`
LDFLAGS += `pkg-config lv2core --libs`
CFLAGS += `pkg-config lv2core pugl-0 --cflags`
LDFLAGS += `pkg-config lv2core pugl-0 --libs`
PTAPSRC := ptap.c
PTAPSRC += ptapui.c
@@ -18,7 +18,7 @@ depend:
makedepend $(PTAPSRC)
$(PTAPO): $(PTAPOBJ)
$(CC) -shared -fPIC -Wl,-soname,$(PTAPO) $(PTAPOBJ) -o $@
$(CC) $(LDFLAGS) -shared -fPIC -Wl,-soname,$(PTAPO) $(PTAPOBJ) -o $@
.c.o:
$(CC) -c -fPIC $(CFLAGS) $< -o $@