annotate libpostproc/Makefile @ 3316:7278f730af27 libavcodec

h264: MBAFF interlaced decoding
author lorenm
date Sun, 28 May 2006 22:44:14 +0000
parents 00b0af60fe53
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
127
2fe8f116576c Independed compilation of SUBDIRS
nick
parents:
diff changeset
1
1069
8528d0b9e508 moving postprocess to ffmpeg/libavcodec
michaelni
parents: 1067
diff changeset
2 include ../../config.mak
127
2fe8f116576c Independed compilation of SUBDIRS
nick
parents:
diff changeset
3
3115
76d320e10dca libpostproc installs into a different directory that needs to be created.
diego
parents: 3114
diff changeset
4 # Overload incdir, postproc include files go in a different directory.
76d320e10dca libpostproc installs into a different directory that needs to be created.
diego
parents: 3114
diff changeset
5 incdir=$(prefix)/include/postproc
76d320e10dca libpostproc installs into a different directory that needs to be created.
diego
parents: 3114
diff changeset
6
3044
ed98beb48872 Move library name generation to configure, simplifies build system a bit more.
diego
parents: 3040
diff changeset
7 NAME=postproc
3124
00b0af60fe53 move common parts of makefiles into common.mak
mru
parents: 3116
diff changeset
8 SUBDIR=libavcodec/libpostproc
3046
1127b4455bec Remove redundant --enable-shared-pp configure option and make the PP code
diego
parents: 3044
diff changeset
9 ifeq ($(BUILD_SHARED),yes)
3040
6a388c616fa3 Create symbolic links for all library sonames and clean up Makefiles.
diego
parents: 3038
diff changeset
10 LIBVERSION=$(SPPVERSION)
6a388c616fa3 Create symbolic links for all library sonames and clean up Makefiles.
diego
parents: 3038
diff changeset
11 LIBMAJOR=$(SPPMAJOR)
812
607e867a8be4 disabling compilation of .so if its not needed, gcc 3.1 seems to have problems with it
michael
parents: 790
diff changeset
12 endif
127
2fe8f116576c Independed compilation of SUBDIRS
nick
parents:
diff changeset
13
3124
00b0af60fe53 move common parts of makefiles into common.mak
mru
parents: 3116
diff changeset
14 STATIC_OBJS=postprocess.o
00b0af60fe53 move common parts of makefiles into common.mak
mru
parents: 3116
diff changeset
15 SHARED_OBJS=postprocess_pic.o
127
2fe8f116576c Independed compilation of SUBDIRS
nick
parents:
diff changeset
16
3124
00b0af60fe53 move common parts of makefiles into common.mak
mru
parents: 3116
diff changeset
17 HEADERS = postprocess.h
00b0af60fe53 move common parts of makefiles into common.mak
mru
parents: 3116
diff changeset
18
00b0af60fe53 move common parts of makefiles into common.mak
mru
parents: 3116
diff changeset
19 CFLAGS = $(OPTFLAGS) $(MLIB_INC) -I. -I.. -I$(SRC_PATH)/libavcodec -I../.. $(EXTRA_INC)
127
2fe8f116576c Independed compilation of SUBDIRS
nick
parents:
diff changeset
20 # -I/usr/X11R6/include/
2fe8f116576c Independed compilation of SUBDIRS
nick
parents:
diff changeset
21
3124
00b0af60fe53 move common parts of makefiles into common.mak
mru
parents: 3116
diff changeset
22 include $(SRC_PATH)/common.mak
508
8f9fa4ec9cbb colorspace converter tests (memory corruption tests at different width/src/dst)
michael
parents: 170
diff changeset
23
3046
1127b4455bec Remove redundant --enable-shared-pp configure option and make the PP code
diego
parents: 3044
diff changeset
24 ifeq ($(BUILD_SHARED),yes)
787
4914252c963a postprocessing cleanup:
michael
parents: 610
diff changeset
25 postprocess_pic.o: postprocess.c
1069
8528d0b9e508 moving postprocess to ffmpeg/libavcodec
michaelni
parents: 1067
diff changeset
26 $(CC) -c $(CFLAGS) -fomit-frame-pointer -fPIC -DPIC -I.. -I../.. -o $@ $<
812
607e867a8be4 disabling compilation of .so if its not needed, gcc 3.1 seems to have problems with it
michael
parents: 790
diff changeset
27 endif
834
d73ad03912f5 fixing dependancies
michael
parents: 812
diff changeset
28