X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fmodules%2Fvorbis%2FMakefile;h=3d19024101f88eea8fdbe96ab97f195b609a0816;hb=bd208d01a2a792e698a9b4884b43602b2f245a8f;hp=6e28934f6ab6e78ffc756b9bc852e16edc953b6c;hpb=5f0547204a5a08185e9d8162016cc2ec9a670486;p=melted diff --git a/src/modules/vorbis/Makefile b/src/modules/vorbis/Makefile index 6e28934..3d19024 100644 --- a/src/modules/vorbis/Makefile +++ b/src/modules/vorbis/Makefile @@ -1,12 +1,13 @@ +include ../../../config.mak TARGET = ../libmltvorbis.so OBJS = factory.o \ producer_vorbis.o -CFLAGS = -I../../ -Wall -g -D_FILE_OFFSET_BITS=64 +CFLAGS = -O4 -pipe -ffast-math -fomit-frame-pointer -I../../ -Wall -g -D_FILE_OFFSET_BITS=64 -LDFLAGS = -lvorbis -lvorbisfile +LDFLAGS = -lvorbisfile -lvorbis 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