mirror of
https://github.com/librempeg/librempeg
synced 2024-11-23 11:39:47 +00:00
fa62bdb868
Originally committed as revision 9277 to svn://svn.ffmpeg.org/ffmpeg/trunk
27 lines
549 B
Makefile
27 lines
549 B
Makefile
|
|
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)
|
|
|
|
STATIC_OBJS=postprocess.o
|
|
SHARED_OBJS=postprocess_pic.o
|
|
|
|
HEADERS = postprocess.h
|
|
|
|
include ../common.mak
|
|
|
|
depend dep: postprocess.c
|
|
|
|
postprocess_pic.o: postprocess.c
|
|
$(CC) -c $(CFLAGS) -fomit-frame-pointer -fPIC -DPIC -o $@ $<
|
|
|
|
uninstall-headers::
|
|
-rmdir "$(prefix)/include/postproc"
|