X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fmodules%2Fresample%2FMakefile;h=0f036fa0e0cf1d2a8f6272d84b2b89091961a109;hb=f00476101550ec7d8e863f6516aa83bc1b524570;hp=b8b7542d5fca1ad7b38ac844de0b1d34ae0c2e55;hpb=8691b6464c35a77ae001b9843891a90dd9fd3d50;p=melted diff --git a/src/modules/resample/Makefile b/src/modules/resample/Makefile index b8b7542..0f036fa 100644 --- a/src/modules/resample/Makefile +++ b/src/modules/resample/Makefile @@ -1,12 +1,15 @@ +include ../../../config.mak TARGET = ../libmltresample.so OBJS = factory.o \ filter_resample.o -CFLAGS = -I../../ -Wall -g +CFLAGS += -I../.. -LDFLAGS= -lsamplerate +LDFLAGS += -lsamplerate + +LDFLAGS+=-L../../framework -lmlt SRCS := $(OBJS:.o=.c) @@ -24,6 +27,9 @@ dist-clean: clean clean: rm -f $(OBJS) $(TARGET) +install: all + install -m 755 $(TARGET) "$(prefix)/share/mlt/modules" + ifneq ($(wildcard .depend),) include .depend endif