comparison vamp-client/Makefile @ 98:f55631599988

Plugin that creates its own server
author Chris Cannam <c.cannam@qmul.ac.uk>
date Thu, 13 Oct 2016 19:11:24 +0100
parents 215c9fb6b7a4
children
comparison
equal deleted inserted replaced
97:427c4c725085 98:f55631599988
214 client.pro ProcessQtTransport.h \ 214 client.pro ProcessQtTransport.h \
215 CapnpRRClient.h \ 215 CapnpRRClient.h \
216 Loader.h \ 216 Loader.h \
217 PluginClient.h \ 217 PluginClient.h \
218 PluginStub.h \ 218 PluginStub.h \
219 AutoPlugin.h \
219 SynchronousTransport.h client.cpp \ 220 SynchronousTransport.h client.cpp \
220 ../vamp-capnp/piper.capnp.c++ 221 ../vamp-capnp/piper.capnp.c++
221 QMAKE_TARGET = client 222 QMAKE_TARGET = client
222 DESTDIR = 223 DESTDIR =
223 TARGET = client 224 TARGET = client
564 (cd `dirname $(DISTDIR)` && $(TAR) $(DISTNAME).tar $(DISTNAME) && $(COMPRESS) $(DISTNAME).tar) && $(MOVE) `dirname $(DISTDIR)`/$(DISTNAME).tar.gz . && $(DEL_FILE) -r $(DISTDIR) 565 (cd `dirname $(DISTDIR)` && $(TAR) $(DISTNAME).tar $(DISTNAME) && $(COMPRESS) $(DISTNAME).tar) && $(MOVE) `dirname $(DISTDIR)`/$(DISTNAME).tar.gz . && $(DEL_FILE) -r $(DISTDIR)
565 566
566 distdir: FORCE 567 distdir: FORCE
567 @test -d $(DISTDIR) || mkdir -p $(DISTDIR) 568 @test -d $(DISTDIR) || mkdir -p $(DISTDIR)
568 $(COPY_FILE) --parents $(DIST) $(DISTDIR)/ 569 $(COPY_FILE) --parents $(DIST) $(DISTDIR)/
569 $(COPY_FILE) --parents ProcessQtTransport.h CapnpRRClient.h Loader.h PluginClient.h PluginStub.h SynchronousTransport.h $(DISTDIR)/ 570 $(COPY_FILE) --parents ProcessQtTransport.h CapnpRRClient.h Loader.h PluginClient.h PluginStub.h AutoPlugin.h SynchronousTransport.h $(DISTDIR)/
570 $(COPY_FILE) --parents client.cpp ../vamp-capnp/piper.capnp.c++ $(DISTDIR)/ 571 $(COPY_FILE) --parents client.cpp ../vamp-capnp/piper.capnp.c++ $(DISTDIR)/
571 572
572 573
573 clean: compiler_clean 574 clean: compiler_clean
574 -$(DEL_FILE) $(OBJECTS) 575 -$(DEL_FILE) $(OBJECTS)
610 ../o/client.o: client.cpp ProcessQtTransport.h \ 611 ../o/client.o: client.cpp ProcessQtTransport.h \
611 SynchronousTransport.h \ 612 SynchronousTransport.h \
612 CapnpRRClient.h \ 613 CapnpRRClient.h \
613 Loader.h \ 614 Loader.h \
614 PluginClient.h \ 615 PluginClient.h \
615 PluginStub.h 616 PluginStub.h \
617 AutoPlugin.h
616 $(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../o/client.o client.cpp 618 $(CXX) -c $(CXXFLAGS) $(INCPATH) -o ../o/client.o client.cpp
617 619
618 ../o/piper.capnp.o: ../vamp-capnp/piper.capnp.c++ ../vamp-capnp/piper.capnp.h 620 ../o/piper.capnp.o: ../vamp-capnp/piper.capnp.c++ ../vamp-capnp/piper.capnp.h
619 $(CC) -c $(CFLAGS) $(INCPATH) -o ../o/piper.capnp.o ../vamp-capnp/piper.capnp.c++ 621 $(CC) -c $(CFLAGS) $(INCPATH) -o ../o/piper.capnp.o ../vamp-capnp/piper.capnp.c++
620 622