X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fmodules%2Fresample%2FMakefile;h=ceae3db6d01a4cfbb8ac4a6c631176562dc6ae13;hb=980bd5cb1c17023459f0330397b817e18b9cb0c3;hp=e70434c6cf70878050baacbc331a4fbf7b8ead58;hpb=8a3795b090723264c973d274eedc28da480e76fd;p=melted diff --git a/src/modules/resample/Makefile b/src/modules/resample/Makefile index e70434c..ceae3db 100644 --- a/src/modules/resample/Makefile +++ b/src/modules/resample/Makefile @@ -1,12 +1,13 @@ +include ../../../config.mak TARGET = ../libmltresample.so OBJS = factory.o \ filter_resample.o -CFLAGS = -O3 -I../../ -Wall -g +CFLAGS += -I../.. -LDFLAGS= -lsamplerate +LDFLAGS += -lsamplerate SRCS := $(OBJS:.o=.c) @@ -24,6 +25,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