X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fmodules%2Fcore%2FMakefile;h=e8d129b6531a8ee56e20a134318ea93b59369a8b;hb=1da06dddd4f117c21c07b3682fab5abab014d995;hp=ac79e0a89ddd5e163f1edbf902e27fba89079690;hpb=0d368e962076c3b96040b86cd5d87a1bbfe0a594;p=melted diff --git a/src/modules/core/Makefile b/src/modules/core/Makefile index ac79e0a..e8d129b 100644 --- a/src/modules/core/Makefile +++ b/src/modules/core/Makefile @@ -1,27 +1,35 @@ +include ../../../config.mak TARGET = ../libmltcore.so OBJS = factory.o \ + producer_colour.o \ + producer_noise.o \ producer_ppm.o \ filter_brightness.o \ filter_channelcopy.o \ - filter_greyscale.o \ + filter_data_feed.o \ + filter_data_show.o \ filter_gamma.o \ + filter_greyscale.o \ filter_luma.o \ + filter_mirror.o \ filter_obscure.o \ filter_region.o \ + filter_rescale.o \ filter_resize.o \ - filter_volume.o \ filter_watermark.o \ - producer_colour.o \ transition_composite.o \ transition_luma.o \ transition_mix.o \ - transition_region.o + transition_region.o \ + consumer_null.o ASM_OBJS = composite_line_yuv_mmx.o -CFLAGS = -O3 -DUSE_MMX -I../../ -Wall -g -D_FILE_OFFSET_BITS=64 -pthread +CFLAGS += -I../.. + +LDFLAGS+=-L../../framework -lmlt SRCS := $(OBJS:.o=.c) @@ -42,6 +50,10 @@ dist-clean: clean clean: rm -f $(OBJS) $(ASM_OBJS) $(TARGET) +install: all + install -m 755 $(TARGET) "$(prefix)/share/mlt/modules" + install -m 644 ../data_fx.properties "$(prefix)/share/mlt/modules" + ifneq ($(wildcard .depend),) include .depend endif