mirror of
https://gitee.com/openharmony/third_party_ffmpeg
synced 2024-11-28 05:30:34 +00:00
cbeee4d8e5
Originally committed as revision 6572 to svn://svn.ffmpeg.org/ffmpeg/trunk
27 lines
520 B
Makefile
27 lines
520 B
Makefile
|
|
include ../config.mak
|
|
|
|
# Overload incdir, postproc include files go in a different directory.
|
|
incdir=$(prefix)/include/postproc
|
|
|
|
NAME=postproc
|
|
ifeq ($(BUILD_SHARED),yes)
|
|
LIBVERSION=$(SPPVERSION)
|
|
LIBMAJOR=$(SPPMAJOR)
|
|
endif
|
|
|
|
STATIC_OBJS=postprocess.o
|
|
SHARED_OBJS=postprocess_pic.o
|
|
|
|
HEADERS = postprocess.h
|
|
|
|
CFLAGS = -I$(BUILD_ROOT) -I$(SRC_PATH)/libavutil $(OPTFLAGS)
|
|
|
|
include $(SRC_PATH)/common.mak
|
|
|
|
depend: postprocess.c
|
|
|
|
postprocess_pic.o: postprocess.c
|
|
$(CC) -c $(CFLAGS) -fomit-frame-pointer -fPIC -DPIC -o $@ $<
|
|
|