~ubuntu-branches/ubuntu/jaunty/xvidcap/jaunty-proposed

« back to all changes in this revision

Viewing changes to ffmpeg/libpostproc/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): John Dong
  • Date: 2008-02-25 15:47:12 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20080225154712-qvr11ekcea4c9ry8
Tags: 1.1.6-0.1ubuntu1
* Merge from debian-multimedia (LP: #120003), Ubuntu Changes:
 - For ffmpeg-related build-deps, remove cvs from package names.
 - Standards-Version 3.7.3
 - Maintainer Spec

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
include ../config.mak
 
3
 
 
4
# Overload incdir, postproc include files go in a different directory.
 
5
incdir=$(prefix)/include/postproc
 
6
 
 
7
EXTRALIBS := -L$(BUILD_ROOT)/libavutil -lavutil$(BUILDSUF) $(EXTRALIBS)
 
8
 
 
9
NAME=postproc
 
10
LIBVERSION=$(SPPVERSION)
 
11
LIBMAJOR=$(SPPMAJOR)
 
12
 
 
13
STATIC_OBJS=postprocess.o
 
14
SHARED_OBJS=postprocess_pic.o
 
15
 
 
16
HEADERS = postprocess.h
 
17
 
 
18
include ../common.mak
 
19
 
 
20
depend dep: postprocess.c
 
21
 
 
22
postprocess_pic.o: postprocess.c
 
23
        $(CC) -c $(CFLAGS) -fomit-frame-pointer -fPIC -DPIC -o $@ $<
 
24