Rename miracle, valerie, humperdink, and albino.
[melted] / src / albino / Makefile
diff --git a/src/albino/Makefile b/src/albino/Makefile
deleted file mode 100644 (file)
index 29bb3ee..0000000
+++ /dev/null
@@ -1,38 +0,0 @@
-include ../../config.mak
-
-TARGET = albino
-
-OBJS = albino.o
-
-CFLAGS += -I.. $(RDYNAMIC)
-
-LDFLAGS += -L../miracle -lmiracle
-LDFLAGS += -L../valerie -lvalerie
-LDFLAGS += -L../framework -lmlt -lpthread
-
-SRCS := $(OBJS:.o=.c)
-
-all: $(TARGET)
-
-$(TARGET): $(OBJS)
-               $(CC) -o $@ $(OBJS) $(LDFLAGS)
-
-depend:        $(SRCS)
-               $(CC) -MM $(CFLAGS) $^ 1>.depend
-
-distclean:     clean
-               rm -f .depend
-
-clean: 
-               rm -f $(OBJS) $(TARGET)
-
-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