view Makefile @ 64:1912d7e2858d libpostproc

Make filterDelimiters and optionDelimiters two static constant array of characters, should move them to .rodata. Patch by Diego 'Flameeyes' Petten flameeyes gmail dot com
author benoit
date Thu, 03 Jan 2008 08:39:38 +0000
parents aac097949f15
children cc79af45c2ae
line wrap: on
line source


include ../config.mak

# Overload incdir, postproc include files go in a different directory.
INCDIR=$(prefix)/include/postproc

EXTRALIBS := -L$(BUILD_ROOT)/libavutil -lavutil$(BUILDSUF) $(EXTRALIBS)

NAME=postproc
LIBVERSION=$(SPPVERSION)
LIBMAJOR=$(SPPMAJOR)

HEADERS = postprocess.h

include ../common.mak

$(LIBNAME): postprocess.o
$(SLIBNAME_WITH_MAJOR): postprocess_pic.o

depend dep: postprocess.c

postprocess_pic.o: postprocess.c
	$(CC) -c $(CFLAGS) -fomit-frame-pointer -fPIC -DPIC -o $@ $<

uninstall-headers::
	-rmdir "$(prefix)/include/postproc"