Add mvsp mlt module.
[melted] / src / humperdink / Makefile
index c27adae..dd03dc9 100644 (file)
@@ -3,12 +3,13 @@ include ../../config.mak
 TARGET = humperdink
 
 OBJS = client.o \
-       io.o \
+          io.o \
           remote.o
 
 CFLAGS += -I.. $(RDYNAMIC)
 
-LDFLAGS += -L../valerie -L../framework -lvalerie -lmlt
+LDFLAGS += -L../valerie -lvalerie
+LDFLAGS += -L../framework -lmlt -lpthread
 
 SRCS := $(OBJS:.o=.c)
 
@@ -20,7 +21,7 @@ $(TARGET): $(OBJS)
 depend:        $(SRCS)
                $(CC) -MM $(CFLAGS) $^ 1>.depend
 
-dist-clean:    clean
+distclean:     clean
                rm -f .depend
 
 clean: 
@@ -30,6 +31,9 @@ install:      all
        install -d "$(DESTDIR)$(bindir)"
        install -c -s -m 755 $(TARGET) "$(DESTDIR)$(bindir)"
 
+uninstall:
+       rm -f "$(DESTDIR)$(bindir)/$(TARGET)"
+
 ifneq ($(wildcard .depend),)
 include .depend
 endif