X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fmodules%2Fcore%2FMakefile;h=a906252b7bdaf3e02bae8fd8a0285a7d7f9beff3;hb=bd208d01a2a792e698a9b4884b43602b2f245a8f;hp=5b8ac04af52b6e94c92aad0a8a64bab45711bcd2;hpb=15934f863eff9ee542f8b65fb7335ad944508f2f;p=melted diff --git a/src/modules/core/Makefile b/src/modules/core/Makefile index 5b8ac04..a906252 100644 --- a/src/modules/core/Makefile +++ b/src/modules/core/Makefile @@ -1,20 +1,40 @@ +include ../../../config.mak -TARGET=libmltcore.so +TARGET = ../libmltcore.so OBJS = factory.o \ + producer_colour.o \ + producer_noise.o \ producer_ppm.o \ - filter_deinterlace.o \ + filter_brightness.o \ + filter_channelcopy.o \ + filter_gamma.o \ filter_greyscale.o \ - transition_composite.o - -CFLAGS=-I../../ -Wall -g -D_FILE_OFFSET_BITS=64 -pthread + filter_luma.o \ + filter_mirror.o \ + filter_obscure.o \ + filter_region.o \ + filter_resize.o \ + filter_volume.o \ + filter_watermark.o \ + transition_composite.o \ + transition_luma.o \ + transition_mix.o \ + transition_region.o + +ASM_OBJS = composite_line_yuv_mmx.o + +CFLAGS = -O4 -pipe -ffast-math -fomit-frame-pointer -DUSE_MMX -I../../ -Wall -g -D_FILE_OFFSET_BITS=64 -pthread SRCS := $(OBJS:.o=.c) all: $(TARGET) -$(TARGET): $(OBJS) - $(CC) -shared -o $@ $(OBJS) $(LDFLAGS) +$(TARGET): $(OBJS) $(ASM_OBJS) + $(CC) -shared -o $@ $(OBJS) $(ASM_OBJS) $(LDFLAGS) + +composite_line_yuv_mmx.o: composite_line_yuv_mmx.S + $(CC) -o $@ -c composite_line_yuv_mmx.S depend: $(SRCS) $(CC) -MM $(CFLAGS) $^ 1>.depend @@ -23,7 +43,10 @@ dist-clean: clean rm -f .depend clean: - rm -f $(OBJS) $(TARGET) + rm -f $(OBJS) $(ASM_OBJS) $(TARGET) + +install: all + install -m 755 $(TARGET) "$(prefix)/share/mlt/modules" ifneq ($(wildcard .depend),) include .depend