X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=mlt%2B%2B%2Ftest%2FMakefile;h=5a10be2fede85fd948fead4aa4800fce86990673;hb=55757b000043f6e370b9e963ce2e3542962c03c0;hp=58d48b6cfa19718aedd0c3a30cb3d832627b0a4f;hpb=01c1d44e8df201c3061cf20addf5421d21d8bcb0;p=melted diff --git a/mlt++/test/Makefile b/mlt++/test/Makefile index 58d48b6..5a10be2 100644 --- a/mlt++/test/Makefile +++ b/mlt++/test/Makefile @@ -1,8 +1,25 @@ -CXXFLAGS=-Wall `mlt-config --cflags` -LDFLAGS=-lmlt++ +include ../config.mak + +CXXFLAGS+=-Wall -g `pkg-config mlt-framework --cflags` -I ../src +LDFLAGS+=-L../src -lmlt++ -lmiracle -lvalerie `pkg-config mlt-framework --libs` CC=c++ -play: play.o +all: play server + +play: play.o + +play.o: play.cpp + +server: server.o + +server.o: server.cpp + +clean: + $(RM) play play.o + $(RM) server server.o + +distclean: clean -play.o: play.cpp +install: +uninstall: