X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fmodules%2Fcore%2FMakefile;h=4f688281814dd64652f85193c79279e980a7cd96;hb=2f768c42c67ec9802222032f6d2bc63d7a3c6afb;hp=fd7d0dff91d3e13d6a3dfafe517083d902bf0521;hpb=3f7c53230945e427b019ba5df4fec587e19e29c1;p=melted diff --git a/src/modules/core/Makefile b/src/modules/core/Makefile index fd7d0df..4f68828 100644 --- a/src/modules/core/Makefile +++ b/src/modules/core/Makefile @@ -1,26 +1,33 @@ +include ../../../config.mak TARGET = ../libmltcore.so OBJS = factory.o \ + producer_colour.o \ + producer_noise.o \ producer_ppm.o \ filter_brightness.o \ - filter_greyscale.o \ + filter_channelcopy.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) @@ -41,6 +48,9 @@ dist-clean: clean clean: rm -f $(OBJS) $(ASM_OBJS) $(TARGET) +install: all + install -m 755 $(TARGET) "$(prefix)/share/mlt/modules" + ifneq ($(wildcard .depend),) include .depend endif