X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Ftests%2FMakefile;h=65099fb80487af1ac74b74cb5441ea183e062e35;hb=f4963a6aa07644399b273b5d2b1f9299c9047414;hp=3c7dd7898279be12d779b235801351e22b383087;hpb=d0a840da47c2c35959641c26d74b1498df0ed6be;p=melted diff --git a/src/tests/Makefile b/src/tests/Makefile index 3c7dd78..65099fb 100644 --- a/src/tests/Makefile +++ b/src/tests/Makefile @@ -1,11 +1,17 @@ +include ../../config.mak + TARGET = dan charlie pango pixbuf dissolve luma -CFLAGS = -I .. -Wall -rdynamic -pthread +CFLAGS += -I.. $(RDYNAMIC) -LDFLAGS = -L ../framework -lmlt +LDFLAGS += -L../modules +LDFLAGS += -L../framework -lmlt all: $(TARGET) +hello: hello.o + $(CC) hello.o -o $@ -L../framework -L../modules -lmlt + pango: pango.o $(CC) pango.o -o $@ $(LDFLAGS)