X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Ftests%2FMakefile;h=8e680f1bc462c56bb6d7738ce3aa7b2c4d2b38d7;hb=ad829dbc7677a2acc063635db14ce717eb40be50;hp=263d72eb5b77fba333fd2872c32090e7cf3f1182;hpb=8a3795b090723264c973d274eedc28da480e76fd;p=melted diff --git a/src/tests/Makefile b/src/tests/Makefile index 263d72e..8e680f1 100644 --- a/src/tests/Makefile +++ b/src/tests/Makefile @@ -2,10 +2,18 @@ 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 +LDFLAGS+=-p +endif all: $(TARGET) +hello: hello.o + $(CC) hello.o -o $@ -L ../framework -L ../modules -lmlt + pango: pango.o $(CC) pango.o -o $@ $(LDFLAGS)