make install part 1
[melted] / src / tests / Makefile
index e6883dd..92ef0eb 100644 (file)
@@ -1,8 +1,10 @@
+include ../../config.mak
+
 TARGET = dan charlie pango pixbuf dissolve luma
 
 CFLAGS = -O3 -I .. -Wall -rdynamic -pthread
 
-LDFLAGS = -L ../framework -lmlt 
+LDFLAGS = -L ../framework -L ../modules -lmlt -lmltdv -lmltsdl
 
 ifeq ($(MLT_GPROF),true)
 CFLAGS+=-p
@@ -11,6 +13,9 @@ endif
 
 all: $(TARGET)
 
+hello:         hello.o
+                       $(CC) hello.o -o $@ -L ../framework -L ../modules -lmlt
+
 pango:         pango.o
                        $(CC) pango.o -o $@ $(LDFLAGS)