Build modifications
authorlilo_booter <lilo_booter@d19143bc-622f-0410-bfdd-b5b2a6649095>
Thu, 26 Aug 2004 18:40:35 +0000 (18:40 +0000)
committerlilo_booter <lilo_booter@d19143bc-622f-0410-bfdd-b5b2a6649095>
Thu, 26 Aug 2004 18:40:35 +0000 (18:40 +0000)
git-svn-id: https://mlt.svn.sourceforge.net/svnroot/mlt/trunk/mlt++@389 d19143bc-622f-0410-bfdd-b5b2a6649095

mlt++/Makefile
mlt++/test/Makefile
mlt++/test/play.cpp

index a8a65ac..d68a8b8 100644 (file)
@@ -1,3 +1,4 @@
 all clean install:
        $(MAKE) -C src $@ 
+       $(MAKE) -C test $@ 
 
index 9280251..2b27a93 100644 (file)
@@ -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:
index 998f2ab..6c1341e 100644 (file)
@@ -3,7 +3,7 @@
 #include <string>
 using namespace std;
 
-#include <mlt++/Mlt.h>
+#include <Mlt.h>
 using namespace Mlt;
 
 #include <time.h>