Major UI progress

This commit is contained in:
2013-02-03 02:25:17 +00:00
parent dab01f34f9
commit 7e31025981
29 changed files with 3432 additions and 59 deletions

View File

@@ -6,7 +6,7 @@ LDFLAGS += `pkg-config lv2core pugl-0 --libs`
PTAPSRC := ptap.cpp
PTAPSRC += ptapui.cpp
PTAPOBJ := $(PTAPSRC:.cpp=.o)
PTAPOBJ := $(PTAPSRC:.cpp=.o) ../pui/*.o
PTAPO := ptap.so
CPP := g++
@@ -20,7 +20,7 @@ depend:
makedepend $(PTAPSRC)
$(PTAPO): $(PTAPOBJ)
$(CC) $(LDFLAGS) -shared -fPIC -Wl,-soname,$(PTAPO) $(PTAPOBJ) -o $@
$(CPP) $(LDFLAGS) -shared -fPIC -Wl,-soname,$(PTAPO) $(PTAPOBJ) -o $@
.cpp.o:
$(CPP) -c -fPIC $(CFLAGS) $< -o $@