Rough file addition and cleanup. Not yet ready for use.
[melted] / src / modules / plus / Makefile
diff --git a/src/modules/plus/Makefile b/src/modules/plus/Makefile
deleted file mode 100644 (file)
index 4003b42..0000000
+++ /dev/null
@@ -1,37 +0,0 @@
-include ../../../config.mak
-
-TARGET = ../libmltplus$(LIBSUF)
-
-OBJS = factory.o \
-          filter_affine.o \
-          filter_charcoal.o \
-          filter_invert.o \
-          filter_sepia.o \
-          transition_affine.o
-
-CFLAGS += -I../..
-
-LDFLAGS += -L../../framework -lmlt
-
-SRCS := $(OBJS:.o=.c)
-
-all:   $(TARGET)
-
-$(TARGET): $(OBJS)
-               $(CC) $(SHFLAGS) -o $@ $(OBJS) $(LDFLAGS)
-
-depend:        $(SRCS)
-               $(CC) -MM $(CFLAGS) $^ 1>.depend
-
-distclean:     clean
-               rm -f .depend
-
-clean: 
-               rm -f $(OBJS) $(TARGET) 
-
-install: all
-       install -m 755 $(TARGET) "$(DESTDIR)$(libdir)/mlt"
-
-ifneq ($(wildcard .depend),)
-include .depend
-endif