From 9f98ea39c8e2b544c628b3df1a32fdcab5a0a296 Mon Sep 17 00:00:00 2001 From: lilo_booter Date: Thu, 26 Aug 2004 18:40:35 +0000 Subject: [PATCH] Build modifications git-svn-id: https://mlt.svn.sourceforge.net/svnroot/mlt/trunk/mlt++@389 d19143bc-622f-0410-bfdd-b5b2a6649095 --- mlt++/Makefile | 1 + mlt++/test/Makefile | 7 +++++-- mlt++/test/play.cpp | 2 +- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/mlt++/Makefile b/mlt++/Makefile index a8a65ac..d68a8b8 100644 --- a/mlt++/Makefile +++ b/mlt++/Makefile @@ -1,3 +1,4 @@ all clean install: $(MAKE) -C src $@ + $(MAKE) -C test $@ diff --git a/mlt++/test/Makefile b/mlt++/test/Makefile index 9280251..2b27a93 100644 --- a/mlt++/test/Makefile +++ b/mlt++/test/Makefile @@ -1,7 +1,9 @@ -CXXFLAGS=-Wall `mlt-config --cflags` -LDFLAGS=-lmlt++ +CXXFLAGS=-Wall `mlt-config --cflags` -I ../src +LDFLAGS=--L../src -lmlt++ CC=c++ +all: play + play: play.o play.o: play.cpp @@ -9,3 +11,4 @@ play.o: play.cpp clean: $(RM) play play.o +install: diff --git a/mlt++/test/play.cpp b/mlt++/test/play.cpp index 998f2ab..6c1341e 100644 --- a/mlt++/test/play.cpp +++ b/mlt++/test/play.cpp @@ -3,7 +3,7 @@ #include using namespace std; -#include +#include using namespace Mlt; #include -- 1.7.4.4