CFLAGS += -I../.. LDFLAGS += -L../../framework -lmlt include ../../../config.mak TARGET = ../libmltfrei0r$(LIBSUF) OBJS = factory.o \ producer_frei0r.o \ filter_frei0r.o \ transition_frei0r.o \ frei0r_helper.o CFLAGS += $(shell pkg-config --cflags frei0r 2> /dev/null) LDFLAGS += -lm $(LIBDL) LDFLAGS += $(shell pkg-config --libs frei0r 2> /dev/null) 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)$(moduledir)" install -d "$(DESTDIR)$(mltdatadir)/frei0r" install -m 644 blacklist.txt "$(DESTDIR)$(mltdatadir)/frei0r" install -m 644 not_thread_safe.txt "$(DESTDIR)$(mltdatadir)/frei0r" install -m 644 param_name_map.yaml "$(DESTDIR)$(mltdatadir)/frei0r" ifneq ($(wildcard .depend),) include .depend endif