mirror of https://github.com/FFmpeg/FFmpeg.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
594 B
28 lines
594 B
22 years ago
|
|
||
19 years ago
|
include ../config.mak
|
||
22 years ago
|
|
||
19 years ago
|
# Overload incdir, postproc include files go in a different directory.
|
||
|
incdir=$(prefix)/include/postproc
|
||
|
|
||
19 years ago
|
NAME=postproc
|
||
19 years ago
|
ifeq ($(BUILD_SHARED),yes)
|
||
19 years ago
|
LIBVERSION=$(SPPVERSION)
|
||
|
LIBMAJOR=$(SPPMAJOR)
|
||
22 years ago
|
endif
|
||
|
|
||
19 years ago
|
STATIC_OBJS=postprocess.o
|
||
|
SHARED_OBJS=postprocess_pic.o
|
||
22 years ago
|
|
||
19 years ago
|
HEADERS = postprocess.h
|
||
22 years ago
|
|
||
19 years ago
|
CFLAGS = $(OPTFLAGS) $(MLIB_INC) -I. -I.. -I$(SRC_PATH)/libavcodec -I../.. $(EXTRA_INC)
|
||
|
# -I/usr/X11R6/include/
|
||
22 years ago
|
|
||
19 years ago
|
include $(SRC_PATH)/common.mak
|
||
22 years ago
|
|
||
19 years ago
|
ifeq ($(BUILD_SHARED),yes)
|
||
22 years ago
|
postprocess_pic.o: postprocess.c
|
||
|
$(CC) -c $(CFLAGS) -fomit-frame-pointer -fPIC -DPIC -I.. -I../.. -o $@ $<
|
||
21 years ago
|
endif
|
||
19 years ago
|
|