1
mirror of https://git.videolan.org/git/ffmpeg.git synced 2024-09-12 10:25:32 +02:00
ffmpeg/libpostproc/Makefile
Diego Biurrun c895987b33 Remove unnecessary -I. option.
Originally committed as revision 6010 to svn://svn.ffmpeg.org/ffmpeg/trunk
2006-08-17 11:42:41 +00:00

28 lines
544 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 = $(OPTFLAGS) -I.. -I$(SRC_PATH)/libavcodec
# -I/usr/X11R6/include/
include $(SRC_PATH)/common.mak
ifeq ($(BUILD_SHARED),yes)
postprocess_pic.o: postprocess.c
$(CC) -c $(CFLAGS) -fomit-frame-pointer -fPIC -DPIC -o $@ $<
endif